user_poster_batches.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. // Code generated by gorm.io/gen. DO NOT EDIT.
  2. // Code generated by gorm.io/gen. DO NOT EDIT.
  3. // Code generated by gorm.io/gen. DO NOT EDIT.
  4. package entity
  5. import (
  6. "time"
  7. )
  8. const TableNameUserPosterBatch = "user_poster_batches"
  9. // UserPosterBatch mapped from table <user_poster_batches>
  10. type UserPosterBatch struct {
  11. BatchID int64 `gorm:"column:batch_id;type:int;primaryKey;autoIncrement:true" json:"batch_id"`
  12. UID int64 `gorm:"column:uid;type:int;not null" json:"uid"` // 用户ID
  13. PosterID int64 `gorm:"column:poster_id;type:int;not null" json:"poster_id"` // 海报ID
  14. Name string `gorm:"column:name;type:varchar(50);not null" json:"name"` // 海报名称
  15. UUID string `gorm:"column:uuid;type:char(20);not null" json:"uuid"` // 海报唯一标识
  16. Raw string `gorm:"column:raw;type:text;not null" json:"raw"` // 生成的内容
  17. Num int64 `gorm:"column:num;type:int;not null;default:1" json:"num"` // 海报份数
  18. DoneNum int64 `gorm:"column:done_num;type:int;not null" json:"done_num"` // 已经生成的份数
  19. Type string `gorm:"column:type;type:varchar(10);not null;default:jpeg" json:"type"` // 生成图片类型
  20. Path *string `gorm:"column:path;type:varchar(255)" json:"path"` // 海报存储路径
  21. Status int64 `gorm:"column:status;type:tinyint;not null" json:"status"` // 海报生成状态
  22. CreateAt time.Time `gorm:"column:create_at;type:timestamp;not null" json:"create_at"` // 创建时间
  23. UpdateAt time.Time `gorm:"column:update_at;type:timestamp;not null;default:CURRENT_TIMESTAMP" json:"update_at"` // 更新时间
  24. }
  25. // TableName UserPosterBatch's table name
  26. func (*UserPosterBatch) TableName() string {
  27. return TableNameUserPosterBatch
  28. }