1
2
3
4
5
6
7
package com.by4cloud.platformx.business.service;
 
public interface ContractDelayOutService {
    void approvalPass(Long contractId);
 
    void refuseApproval(Long contractId);
}