attachment.go 295 B

12345678910111213
  1. package model
  2. // Attachment struct
  3. type Attachment struct {
  4. ID int32 `gorm:"column:id" json:"id"`
  5. Cid int32 `gorm:"column:cid" json:"cid"`
  6. Path string `gorm:"column:path" json:"path"`
  7. }
  8. // TableName by Attachment
  9. func (*Attachment) TableName() string {
  10. return "workflow_attachment"
  11. }