12345678910111213141516171819 |
- package com.galaxis.manatee.service;
- import com.galaxis.manatee.entity.chuanyun.data.object.ChuanyunCostCollectionDO;
- import org.springframework.scheduling.annotation.Async;
- import java.util.List;
- /**
- * 氚云服务调用
- */
- public interface ChuanyunService {
- /**
- * 更新项目组成员
- */
- void updateProjectMember();
- List<ChuanyunCostCollectionDO> getAllCostCollection();
- }
|