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_dataex_jyt2012.go

21 lines
1.3 KiB

This file contains ambiguous Unicode characters!

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
import (
"time"
)
type TDataexJyt2012 struct {
Id string `xorm:"not null pk comment('ID') VARCHAR(36)"`
DicName string `xorm:"not null comment('字典/字典项名称') VARCHAR(100)"`
DicType int32 `xorm:"not null default 1 comment('字典类型【1国标数据、关联数据源2国标字典、关联元数据】') INT(11)"`
DicInfo string `xorm:"default ''NULL'' comment('字典相信说明') VARCHAR(500)"`
RootFlag int32 `xorm:"not null default -1 comment('是否是字典【1-1否】') INT(11)"`
JytFlag int32 `xorm:"not null default 1 comment('是否国标【1-1自定义】') INT(11)"`
ParentId string `xorm:"default ''NULL'' comment('字典ID【字典项父节点】') VARCHAR(36)"`
CreateTime time.Time `xorm:"default 'NULL' comment('建立时间') DATETIME"`
ChangeTime time.Time `xorm:"default 'NULL' comment('最近修改时间') DATETIME"`
DeleteTime time.Time `xorm:"default 'NULL' comment('删除时间') DATETIME"`
DeleteFlag int32 `xorm:"not null default -1 comment('删除标志【默认-11删除-1正常】') INT(11)"`
EnableFlag int32 `xorm:"not null default 1 comment('启用标志【默认11启用-1禁用】') INT(11)"`
}