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.
dsMin/dsSso/models/t_gov_area_level.go

7 lines
206 B

package models
type TGovAreaLevel struct {
AreaLevelId int32 `xorm:"not null pk comment('区域级别ID') INT(11)"`
AreaLevelName string `xorm:"not null comment('区域级别名称') VARCHAR(255)"`
}