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.
19 lines
905 B
19 lines
905 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TDatasharePublish struct {
|
|
ItemId int64 `xorm:"not null pk autoincr comment('项目ID') INT(36)"`
|
|
ItemCode string `xorm:"not null comment('项目code') unique VARCHAR(255)"`
|
|
ItemMemo string `xorm:"not null comment('项目描述') VARCHAR(255)"`
|
|
Appid string `xorm:"not null comment('应用系统id') CHAR(32)"`
|
|
SortId int64 `xorm:"not null default 1 comment('排序号') INT(11)"`
|
|
CreateTime time.Time `xorm:"default 'NULL' comment('创建时间') DATETIME"`
|
|
Sqlkey string `xorm:"not null comment('配置sql') VARCHAR(409)"`
|
|
PrimaryName string `xorm:"not null comment('主键名称') VARCHAR(255)"`
|
|
IsShow int64 `xorm:"not null default 1 comment('是不显示') index INT(11)"`
|
|
IsOpen int64 `xorm:"not null default 0 comment('是不是所有接入者均可使用') INT(11)"`
|
|
}
|