File name
Commit message
Commit date
File name
Commit message
Commit date
2024-11-14
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
2024-11-14
File name
Commit message
Commit date
2024-11-14
2024-09-10
2024-11-14
File name
Commit message
Commit date
2023-08-29
File name
Commit message
Commit date
2023-08-29
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 ;
void deleteReceiptInfo(TaxVO taxVO) throws Exception ;
int updateTaxForRefundCancle(TaxVO taxVO) throws Exception;
void updateTaxReceiptFile(TaxVO taxVO) throws Exception;
}