package com.product.contract.service.ide; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * @author: ZhouJie * @date: 2021/6/28 17:52 * @description: 合同变更 */ public interface IContractChangeService { String saveContractChange(FieldSetEntity fs) throws BaseException; boolean deleteContractChange(FieldSetEntity fs) throws BaseException; }