zm
2024-08-02 9f2f4d3598c5775b88f0b1a07a8ac0a0d9789351
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/6/21 9:55
 * @description: 履约保证金缴纳
 */
public interface IPerformanceBondService {
 
    String savePerformanceBond(FieldSetEntity fs)throws BaseException;
 
    boolean deletePerformanceBond(FieldSetEntity fs) throws BaseException;
 
}