UserBusinessRateService.java 355 B

12345678910111213141516
  1. package com.cyksj.service.mange.business;
  2. /*
  3. *项目名: netflix
  4. *文件名: UserBusinessRateService
  5. *创建者: JavaZou
  6. *创建时间:2023/3/23 14:02
  7. */
  8. public interface UserBusinessRateService {
  9. /**
  10. * 若无配置商务人员比例,保存商务人员比例
  11. */
  12. void saveBusinessRate(Long businessId);
  13. Boolean isBusiness(Long businessId);
  14. }