data_models.go 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package models
  2. type Dataconfig struct {
  3. ID int64 `gorm:"column:id" json:"id" form:"id"`
  4. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  5. Module string `gorm:"column:module" json:"module" form:"module"`
  6. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  7. Name string `gorm:"column:name" json:"name" form:"name"`
  8. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  9. Value int `gorm:"column:value" json:"value" form:"value"`
  10. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  11. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  12. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  13. Status int64 `gorm:"column:status" json:"status" form:"status"`
  14. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  15. DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
  16. Title string `gorm:"column:title" json:"title" form:"title"`
  17. Content string `gorm:"column:content" json:"content" form:"content"`
  18. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  19. }
  20. func (Dataconfig) TableName() string {
  21. return "xt_data_config"
  22. }
  23. type ConfigViewModel struct {
  24. ID int64 `gorm:"column:id" json:"id" form:"id"`
  25. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  26. Module string `gorm:"column:module" json:"module" form:"module"`
  27. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  28. Name string `gorm:"column:name" json:"name" form:"name"`
  29. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  30. Value int `gorm:"column:value" json:"value" form:"value"`
  31. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  32. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  33. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  34. Status int64 `gorm:"column:status" json:"status" form:"status"`
  35. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  36. Title string `gorm:"column:title" json:"title" form:"title"`
  37. Content string `gorm:"column:content" json:"content" form:"content"`
  38. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  39. Childs []*Dataconfig `json:"childs" `
  40. }
  41. func (ConfigViewModel) TableName() string {
  42. return "xt_data_config"
  43. }
  44. type FiledConfig struct {
  45. ID int64 `gorm:"column:id" json:"id"`
  46. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  47. Module int64 `gorm:"column:module" json:"module"`
  48. FiledName string `gorm:"column:filed_name" json:"filed_name"`
  49. FiledNameCn string `gorm:"column:filed_name_cn" json:"filed_name_cn"`
  50. IsShow int64 `gorm:"column:is_show" json:"is_show"`
  51. CreateTime int64 `gorm:"column:create_time" json:"create_time"`
  52. UpdateTime int64 `gorm:"column:update_time" json:"update_time"`
  53. }
  54. func (FiledConfig) TableName() string {
  55. return "xt_filed_config"
  56. }