zm
2025-03-15 84afb0cebcd698f0c1fdb95f02231dc99e9252a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.product.contract.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @author: ZhouJie
 * @date: 2021/7/13 17:22
 * @description: 合同回款
 */
public interface IContractPaymentService {
 
    String saveContractPayment(FieldSetEntity fs) throws BaseException;
 
    boolean deleteContractPayment(FieldSetEntity fs) throws BaseException;
 
}