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.
|
package models
|
|
|
|
type TGovAreaLevel struct {
|
|
AreaLevelId int32 `xorm:"not null pk comment('区域级别ID') INT(11)"`
|
|
AreaLevelName string `xorm:"not null comment('区域级别名称') VARCHAR(255)"`
|
|
}
|