shicf
2024-07-22 b3e128c999802b25bd237ee74d6e5d22434135a5
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/29 11:24
 * @description: 合同开票
 */
public interface IContractInvoiceService {
 
    String saveContractInvoice(FieldSetEntity fs) throws BaseException;
 
    boolean deleteContractInvoice(FieldSetEntity fs) throws BaseException;
 
}