This commit is contained in:
2026-05-01 11:28:46 +08:00
parent 98a78c3170
commit 40f4fab1d4
4 changed files with 280 additions and 9 deletions

View File

@@ -23,6 +23,7 @@ type rawBundle struct {
AnnualReport map[string]interface{} `json:"annualReport"`
TaxViolation map[string]interface{} `json:"taxViolation"`
TaxArrears map[string]interface{} `json:"taxArrears"`
CustomsCredit map[string]interface{} `json:"customsCredit"`
}
func main() {
@@ -57,6 +58,7 @@ func main() {
b.AnnualReport,
b.TaxViolation,
b.TaxArrears,
b.CustomsCredit,
)
out, err := json.MarshalIndent(report, "", " ")