| 1234567891011121314151617181920212223242526272829303132333435363738 |
- package models
- // Tabledefine 列表定义表
- type Tabledefine struct {
- Tablekey string `json:"tablekey" xorm:"'TABLEKEY'" binding:"required"` // 列表Key
- Tabletype uint32 `json:"tabletype" xorm:"'TABLETYPE'"` // 列表类型 - 1:管理端 2:终端
- Tablename string `json:"tablename" xorm:"'TABLENAME'"` // 列表名称
- Tabelmenu string `json:"tabelmenu" xorm:"'TABELMENU'"` // 列表菜单
- Remark string `json:"remark" xorm:"'REMARK'"` // Remark
- }
- // TableName is TABLEDEFINE
- func (Tabledefine) TableName() string {
- return "TABLEDEFINE"
- }
- // Tablecolumnconfig 列表表头配置表
- type Tablecolumnconfig struct {
- Autoid uint64 `json:"autoid" xorm:"'AUTOID'" binding:"required"` // AutoID
- Tablekey string `json:"tablekey" xorm:"'TABLEKEY'"` // 列表Key
- Columnfield string `json:"columnfield" xorm:"'COLUMNFIELD'"` // 列字段
- Columntitle string `json:"columntitle" xorm:"'COLUMNTITLE'"` // 列Title
- Columnwidth string `json:"columnwidth" xorm:"'COLUMNWIDTH'"` // 列宽
- Orderindex uint32 `json:"orderindex" xorm:"'ORDERINDEX'"` // 顺序
- Isshow uint32 `json:"isshow" xorm:"'ISSHOW'"` // 是否显示 - 0:不显示 1:显示
- Aligntype uint32 `json:"aligntype" xorm:"'ALIGNTYPE'"` // 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
- Formattertype string `json:"formattertype" xorm:"'FORMATTERTYPE'"` // 格式化类型
- Formatterstring string `json:"formatterstring" xorm:"'FORMATTERSTRING'"` // 格式化字符
- Remark string `json:"remark" xorm:"'REMARK'"` // 备注
- Needsummary uint32 `json:"needsummary" xorm:"'NEEDSUMMARY'"` // 是否需要汇总 - 0:不需要 1:需要
- Summarytype uint32 `json:"summarytype" xorm:"'SUMMARYTYPE'"` // 汇总类型 - 1:加总 2:最后一个
- Groupname string `json:"groupname" xorm:"'GROUPNAME'"` // 表头分组名称
- }
- // TableName is TABLECOLUMNCONFIG
- func (Tablecolumnconfig) TableName() string {
- return "TABLECOLUMNCONFIG"
- }
|