control.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package model
  2. import (
  3. "time"
  4. )
  5. const (
  6. // ControlTypeInput 文本类型控件
  7. ControlTypeInput = "input"
  8. // ControlTypeTextarea 多行文本类型控件
  9. ControlTypeTextarea = "textarea"
  10. // ControlTypeLink 链接类型控件
  11. ControlTypeLink = "link"
  12. // ControlTypeSelector 选择类型控件
  13. ControlTypeSelector = "selector"
  14. // ControlTypeFile 文件类型控件
  15. ControlTypeFile = "file"
  16. // ControlPageSize .
  17. ControlPageSize = int(1000)
  18. )
  19. // Control will describe how the tag be acted
  20. type Control struct {
  21. Cid int32 `gorm:"-" json:"-"`
  22. Tid int32 `gorm:"column:tid" json:"tid"`
  23. Weight int32 `gorm:"-" json:"-"`
  24. Name string `gorm:"column:name" json:"name"`
  25. Title string `gorm:"column:title" json:"title"`
  26. Component string `gorm:"column:component" json:"component"`
  27. Placeholder string `gorm:"column:placeholder" json:"placeholder"`
  28. Required bool `gorm:"column:required" json:"required"`
  29. CTime time.Time `gorm:"-" json:"-"`
  30. MTime time.Time `gorm:"-" json:"-"`
  31. }
  32. // TableName by control
  33. func (*Control) TableName() string {
  34. return "workflow_tag_control"
  35. }
  36. // Control3 .
  37. type Control3 struct {
  38. TID int64 `json:"tid"`
  39. BID int64 `json:"bid"`
  40. Name string `json:"name"`
  41. Title string `json:"title"`
  42. Component string `json:"component"`
  43. Placeholder string `json:"placeholder"`
  44. Required int64 `json:"required"`
  45. }
  46. // ResponseControl3 .
  47. type ResponseControl3 struct {
  48. Code int `json:"code"`
  49. Message string `json:"message"`
  50. TTL int32 `json:"ttl"`
  51. Data []*Control3 `json:"data"`
  52. }