event.go 950 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. const (
  6. // EventTypeAdminReply 管理员回复
  7. EventTypeAdminReply = int8(1)
  8. // EventTypeAdminNote 管理员备注
  9. EventTypeAdminNote = int8(2)
  10. // EventTypeUserReply 用户回复
  11. EventTypeUserReply = int8(3)
  12. // EventTypeSystemReply 系统回复
  13. EventTypeSystemReply = int(4)
  14. )
  15. // Event struct
  16. type Event struct {
  17. ID int32 `gorm:"column:id" json:"id"`
  18. Cid int32 `gorm:"column:cid" json:"cid"`
  19. Event int8 `gorm:"column:event" json:"event"`
  20. Adminid int32 `gorm:"column:adminid" json:"adminid"`
  21. Content string `gorm:"column:content" json:"content"`
  22. Attachments string `gorm:"column:attachments" json:"attachments"`
  23. Ctime xtime.Time `gorm:"column:ctime" json:"ctime"`
  24. Mtime xtime.Time `gorm:"column:mtime" json:"mtime"`
  25. }
  26. // TableName by event
  27. func (*Event) TableName() string {
  28. return "workflow_event"
  29. }