package models type TBaseBusiness struct { BusinessCode string `xorm:"not null pk comment('业务系统编码') CHAR(6)"` BusinessName string `xorm:"not null default '''' comment('业务系统名称') unique VARCHAR(64)"` BUse int32 `xorm:"not null default 1 comment('是否启用 0:未启用 1:启用') index TINYINT(1)"` SortId int32 `xorm:"not null default 1 comment('排序号') INT(11)"` }