File name
Commit message
Commit date
File name
Commit message
Commit date
2023-07-03
File name
Commit message
Commit date
File name
Commit message
Commit date
2023-07-03
2023-07-03
File name
Commit message
Commit date
2023-07-03
File name
Commit message
Commit date
2023-07-03
2023-07-03
File name
Commit message
Commit date
package itn.let.mjo.tax.service;
import java.util.List;
public interface TaxService {
TaxVO selectTaxInfo (TaxVO taxVO) throws Exception;
List<TaxVO> selectTaxList(TaxVO taxVO) throws Exception;
void updateTax(TaxVO taxVO) throws Exception ;
void insertCashBill(TaxVO taxVO) throws Exception ;
void deleteReceipts(TaxVO taxVO) throws Exception ;
int updateTaxForRefundCancle(TaxVO taxVO) throws Exception;
void updateTaxReceiptFile(TaxVO taxVO) throws Exception;
}