New file |
| | |
| | | package com.moral.api.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.moral.api.entity.AllocationExtension; |
| | | import com.moral.api.pojo.ext.allocationextension.AllocationExtensionExt; |
| | | import com.moral.api.pojo.ext.allocationextension.AllocationExtensionPageExt; |
| | | import com.moral.api.pojo.query.allocationextension.AllocationExtensionAddCond; |
| | | import com.moral.api.pojo.query.allocationextension.AllocationExtensionPageCond; |
| | | |
| | | /** |
| | | * <p> |
| | | * 交办单延期 服务类 |
| | | * </p> |
| | | * deyt template generate |
| | | * @author JI |
| | | * @since 2023-09-25 |
| | | */ |
| | | public interface AllocationExtensionService extends IService<AllocationExtension> { |
| | | |
| | | /** |
| | | * 根据id查询详情 |
| | | * @param id |
| | | * @return AllocationExtensionExt |
| | | */ |
| | | AllocationExtensionExt extOne(Integer id); |
| | | |
| | | /** |
| | | * 查询分页详情 |
| | | * @param allocationExtensionPageCond |
| | | * @return AllocationExtensionPageExt |
| | | */ |
| | | Page<AllocationExtensionPageExt> extPage(AllocationExtensionPageCond allocationExtensionPageCond); |
| | | |
| | | /** |
| | | * 保存 |
| | | * @param allocationExtensionAddCond |
| | | * @return |
| | | */ |
| | | boolean save(AllocationExtensionAddCond allocationExtensionAddCond); |
| | | |
| | | boolean check(Integer id,Integer state); |
| | | |
| | | } |