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.

10 lines
512 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package models
type TGovArea struct {
AreaCode string `xorm:"not null pk comment('行政区划代码') CHAR(6)"`
AreaName string `xorm:"default '''' comment('行政区划名称') VARCHAR(128)"`
MasterCode string `xorm:"default '''' comment('上级行政区划代码') CHAR(6)"`
AreaLevelId int32 `xorm:"default NULL comment('行政区划级别 例:省、市、区') INT(11)"`
AreaTypeId int32 `xorm:"default NULL comment('行政区划类型 0无 1县市区 2开发区') INT(11)"`
}