zm
2025-03-17 2b8e522ec7c38570463a08e04bc1cc264a038e5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.product.contract.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @author: ZhouJie
 * @date: 2021/6/22 14:12
 * @description: 合同管理
 */
public interface IContractInfoService {
 
    String saveContractInfo(FieldSetEntity fs) throws BaseException;
 
    boolean deleteContractInfo(FieldSetEntity fs) throws BaseException;
    //保存合同盖章
    boolean saveContractStamp(FieldSetEntity fs) throws BaseException;
    //保存合同终止
    boolean saveContractTermination(FieldSetEntity fs) throws BaseException;
    //保存合同归档
    boolean saveContractFile(FieldSetEntity fs) throws BaseException;
}