| | |
| | | import com.moral.api.pojo.ext.allocation.AllocationListExt; |
| | | import com.moral.api.pojo.ext.allocation.AllocationPageExt; |
| | | 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.query.app.AppAllocationFileCond; |
| | | import com.moral.api.pojo.query.app.AppAllocationPageCond; |
| | | import com.moral.api.pojo.vo.allocation.AllocationFindVo; |
| | | import com.moral.api.pojo.vo.app.AppAuthority; |
| | | |
| | | public interface AllocationService extends IService<Allocation> { |
| | | |
| | |
| | | * @return |
| | | */ |
| | | boolean applyFor (AllocationExtensionAddCond allocationExtensionAddCond); |
| | | |
| | | /** |
| | | * 小程序查询 |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<AllocationFindVo> selectSmallRoutine(Integer state,String startTime,String endTime); |
| | | |
| | | /** |
| | | * 小程序分页 |
| | | * @param allocationPageCond |
| | | * @return |
| | | */ |
| | | Page<AllocationPageExt> pageApp(AppAllocationPageCond allocationPageCond); |
| | | |
| | | boolean saveFile(AppAllocationFileCond appAllocationFileCond); |
| | | |
| | | /** |
| | | * 小程序整改 |
| | | * @param changeCond |
| | | */ |
| | | void changeSmallRoutine(AllocationChangeCond changeCond); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 小程序审批 |
| | | * @param checkCond |
| | | */ |
| | | void checkSmallRoutine(AllocationCheckCond checkCond); |
| | | |
| | | /** |
| | | * 分享权限 1 可以看可以写 2.可以看不能写 3.都不能 |
| | | * @param allocationNum |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | AppAuthority authority(String allocationNum, Integer userId); |
| | | |
| | | |
| | | } |