add postalcode

This commit is contained in:
dpurbosakti
2025-10-09 11:29:49 +07:00
parent 8b9fabd5e1
commit 63d2f2342c
7 changed files with 128 additions and 42 deletions
@@ -0,0 +1,7 @@
package postalcode
type PostalCode struct {
Id uint32 `json:"id" gorm:"primaryKey"`
Code string `json:"code" gorm:"unique;size:5"`
Village_Code string `json:"village_code" gorm:"size:10"`
}