| | |
| | | import com.moral.api.pojo.query.allocation.*; |
| | | import com.moral.api.pojo.dto.allocation.AllocationUnitDto; |
| | | import com.moral.api.pojo.query.allocationextension.AllocationExtensionAddCond; |
| | | import com.moral.api.pojo.vo.allocation.AllocationFindVo; |
| | | import com.moral.api.pojo.vo.allocation.AllocationPageVo; |
| | | |
| | | public interface AllocationService extends IService<Allocation> { |
| | | |
| | |
| | | * @return |
| | | */ |
| | | boolean applyFor (AllocationExtensionAddCond allocationExtensionAddCond); |
| | | |
| | | /** |
| | | * 小程序查询 |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<AllocationFindVo> selectSmallRoutine(Integer state,String startTime,String endTime); |
| | | |
| | | |
| | | /** |
| | | * 小程序整改 |
| | | * @param changeCond |
| | | */ |
| | | void changeSmallRoutine(AllocationChangeCond changeCond); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 小程序审批 |
| | | * @param checkCond |
| | | */ |
| | | void checkSmallRoutine(AllocationCheckCond checkCond); |
| | | |
| | | |
| | | } |