shiyunteng
4 天以前 a0974f04b5a83e3ab152ce79e53f180e7b496165
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.by4cloud.platformx.business.service;
 
import com.by4cloud.platformx.business.dto.GenInvoiceInfoDTO;
import com.by4cloud.platformx.common.core.util.R;
 
public interface ContractInvoiceService {
    R getContractOutBound(Long contractId);
 
    R genInvoiceInfo(GenInvoiceInfoDTO genInvoiceInfoDTO);
 
    R toInvoice(GenInvoiceInfoDTO genInvoiceInfoDTO);
 
    R getContractInvoiceList(Long contractId);
 
    R toRedInvoice(Long invoiceId);
 
    R queryBlueInvoice();
 
    R queryRedInvoice();
 
    void takeEffect(Long id);
 
    void refuseApproval(Long id);
}