| 12345678910111213141516171819 |
- export interface WithholdingTaxSummaryResponse {
- year: number;
- annualSummary: {
- totalGrossAmount: number;
- totalIncomeTax: number;
- totalLocalTax: number;
- totalNetAmount: number;
- };
- monthlyList: WithholdingTaxMonthItem[];
- }
- export interface WithholdingTaxMonthItem {
- month: number;
- grossAmount: number;
- incomeTax: number;
- localTax: number;
- netAmount: number;
- paymentCount: number;
- }
|