electricity_bill_calc_service/model/region.go
2023-08-04 17:11:10 +08:00

9 lines
157 B
Go

package model
type Region struct {
Code string `json:"code"`
Name string `json:"name"`
Level int32 `json:"level"`
Parent string `json:"parent"`
}