materials.go 1.8 KB

1234567891011121314151617181920212223242526272829303132
  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 TableNameMaterial = "materials"
  9. // Material mapped from table <materials>
  10. type Material struct {
  11. ID int64 `gorm:"column:id;type:int;primaryKey;autoIncrement:true" json:"id"` // 素材ID
  12. Name string `gorm:"column:name;type:varchar(100);not null" json:"name"` // 素材名称
  13. File string `gorm:"column:file;type:varchar(255);not null" json:"file"` // 素材地址
  14. Size string `gorm:"column:size;type:varchar(20);not null;default:0x0" json:"size"` // 素材尺寸
  15. FileSize int64 `gorm:"column:file_size;type:int;not null" json:"file_size"` // 素材大小
  16. Hash string `gorm:"column:hash;type:char(32);not null" json:"hash"` // 素材文件hash
  17. Type string `gorm:"column:type;type:varchar(10);not null;default:material" json:"type"` // 素材类型
  18. UID int64 `gorm:"column:uid;type:int;not null" json:"uid"` // 上传用户
  19. Status int64 `gorm:"column:status;type:tinyint;not null;default:1" json:"status"` // 素材状态
  20. CreateAt time.Time `gorm:"column:create_at;type:timestamp;not null" json:"create_at"` // 创建时间
  21. UpdateAt time.Time `gorm:"column:update_at;type:timestamp;not null;default:CURRENT_TIMESTAMP" json:"update_at"` // 更新时间
  22. }
  23. // TableName Material's table name
  24. func (*Material) TableName() string {
  25. return TableNameMaterial
  26. }