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