ta_dashboard_setting.go 392B

123456789101112
  1. package model
  2. type TaDashboardSetting struct {
  3. SettingId string `xorm:"not null pk VARCHAR(64)"`
  4. SettingName string `xorm:"VARCHAR(255)"`
  5. CompId string `xorm:"VARCHAR(64)"`
  6. Owner string `xorm:"VARCHAR(64)"`
  7. ForType string `xorm:"VARCHAR(100)"`
  8. Status int `xorm:"SMALLINT(6)"`
  9. SortNo int `xorm:"SMALLINT(6)"`
  10. Group int `xorm:"SMALLINT(6)"`
  11. }