Browse Source

添加数据字典model

huangyh 6 years ago
parent
commit
6707e9ed0e
1 changed files with 36 additions and 0 deletions
  1. 36 0
      models/SysOptionset_gen.go

+ 36 - 0
models/SysOptionset_gen.go

@@ -0,0 +1,36 @@
+
+package models
+import (
+	//__import_packages__
+)
+
+type SysOptionset struct {
+	//主键
+	Id   string    `xorm:"'id' varchar(36) pk notnull "json:"id"`
+	//名称
+	Name   string    `xorm:"'name' varchar(36) notnull "json:"name"`
+	//编码
+	Code   string    `xorm:"'code' varchar(200) notnull "json:"code"`
+	//值
+	Value   string    `xorm:"'value' text notnull "json:"value"`
+	//创建人
+	CreateBy   string    `xorm:"'create_by' varchar(36) notnull "json:"create_by"`
+	//创建时间
+	CreateTime   LocalTime    `xorm:"'create_time' notnull "json:"create_time"`
+	//最后更新人
+	LastUpdateBy   string    `xorm:"'last_update_by' varchar(36) notnull "json:"last_update_by"`
+	//最后更新时间
+	LastUpdateTime   int64    `xorm:"'last_update_time' notnull "json:"last_update_time"`
+	//是否删除 1:删除   0:正常
+	DelFlag   int32    `xorm:"'del_flag' notnull "json:"del_flag"`
+
+}
+
+func (t *SysOptionset) TableName() string {
+	return "sys_optionset"
+}
+
+func init() {
+    AddTableName("sys_optionset")
+	RegisterModel(new(SysOptionset))
+}