| | |
| | | package com.by4cloud.platformx.business.service; |
| | | |
| | | public interface ContractDelayOutService { |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.by4cloud.platformx.business.dto.ContractDelayOutQueryDTO; |
| | | import com.by4cloud.platformx.business.entity.ContractDelayOut; |
| | | import com.by4cloud.platformx.common.data.mybatis.IIService; |
| | | |
| | | public interface ContractDelayOutService extends IIService<ContractDelayOut> { |
| | | void approvalPass(Long contractId); |
| | | |
| | | void refuseApproval(Long contractId); |
| | | |
| | | Page pageNew(Page page, ContractDelayOutQueryDTO queryDTO); |
| | | } |