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)"`
}