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;
|
}
|