ChuanyunService.java 618 B

1234567891011121314151617181920212223242526272829
  1. package com.galaxis.manatee.service;
  2. import com.galaxis.manatee.entity.chuanyun.data.object.ChuanyunCostCollectionDO;
  3. import org.springframework.scheduling.annotation.Async;
  4. import java.util.List;
  5. /**
  6. * 氚云服务调用
  7. */
  8. public interface ChuanyunService {
  9. /**
  10. * 更新项目组成员
  11. */
  12. void updateProjectMember();
  13. /**
  14. * 获取成本集合
  15. * @return 成本集合
  16. */
  17. List<ChuanyunCostCollectionDO> getAllCostCollection();
  18. /**
  19. * 根据表单编号更新所属部门信息
  20. * @param code 表单编号
  21. */
  22. void updateChuanyunDept(String code);
  23. }