附近小店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

province.go 142 B

1 maand geleden
123456
  1. package model
  2. type Province struct {
  3. Id string `json:"id" xorm:"not null pk VARCHAR(12)"`
  4. Name string `json:"name" xorm:"VARCHAR(64)"`
  5. }