group.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package model
  2. import (
  3. "time"
  4. )
  5. const (
  6. // StateTypePending 处理中
  7. StateTypePending = int8(0)
  8. // StateTypeYes 有效
  9. StateTypeYes = int(1)
  10. // StateTypeNo 无效
  11. StateTypeNo = int(2)
  12. // StateDelete 删除
  13. StateDelete = int(9)
  14. // StatePublicReferee 移交众裁
  15. StatePublicReferee = int(10)
  16. )
  17. // Group appeal group
  18. type Group struct {
  19. ID int32 `gorm:"column:id" json:"id"`
  20. Oid int64 `gorm:"column:oid" json:"oid"`
  21. State int8 `gorm:"column:state" json:"state"`
  22. Business int8 `gorm:"column:business" json:"business"`
  23. Tid int32 `gorm:"column:tid" json:"tid"`
  24. Count int32 `gorm:"column:count" json:"count"`
  25. Handling int32 `gorm:"column:handling" json:"handling"`
  26. Note string `gorm:"column:note" json:"note"`
  27. CTime time.Time `gorm:"column:ctime" json:"ctime"`
  28. MTime time.Time `gorm:"column:mtime" json:"mtime"`
  29. Lasttime time.Time `gorm:"column:lasttime" json:"lasttime"`
  30. }
  31. // TableName by Group
  32. func (*Group) TableName() string {
  33. return "workflow_group"
  34. }
  35. // Group3 .
  36. type Group3 struct {
  37. ID int64 `gorm:"column:id" json:"id"`
  38. Oid int64 `gorm:"column:oid" json:"oid"`
  39. State int64 `gorm:"column:state" json:"state"`
  40. Business int64 `gorm:"column:business" json:"business"`
  41. Fid int64 `gorm:"column:fid" json:"fid"`
  42. Rid int64 `gorm:"column:rid" json:"rid"`
  43. Eid int64 `gorm:"column:eid" json:"eid"`
  44. Score int64 `gorm:"column:score" json:"score"`
  45. Tid int64 `gorm:"column:tid" json:"tid"`
  46. Count int64 `gorm:"column:count" json:"count"`
  47. Handling int64 `gorm:"column:handling" json:"handling"`
  48. Note string `gorm:"column:note" json:"note"`
  49. CTime time.Time `gorm:"column:ctime" json:"ctime"`
  50. MTime time.Time `gorm:"column:mtime" json:"mtime"`
  51. Lasttime time.Time `gorm:"column:lasttime" json:"lasttime"`
  52. }
  53. // TableName .
  54. func (g3 *Group3) TableName() string {
  55. return "workflow_group"
  56. }
  57. // DeleteGroupParams .
  58. type DeleteGroupParams struct {
  59. Business int64 `json:"business" form:"business" validate:"required"`
  60. OID int64 `json:"oid" form:"oid" validate:"required"`
  61. EID int64 `json:"eid" form:"eid"`
  62. }
  63. // PublicRefereeGroupParams .
  64. type PublicRefereeGroupParams struct {
  65. Business int8 `json:"business" form:"business" validate:"required"`
  66. Oid string `json:"oid" form:"oid" validate:"required"`
  67. Eid int64 `json:"eid" form:"eid"`
  68. }