programRelationDao.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package dao
  2. type ProgramRelation struct {
  3. ID int `gorm:"primary_key" json:"id"` //编号
  4. ProgramId int `gorm:"type:int" json:"programId"` //节目单ID
  5. LibraryId int `gorm:"type:int" json:"libraryId"` //素材ID
  6. Duration int `gorm:"type:int" json:"duration"` //时长
  7. OrderNo int `gorm:"type:int" json:"orderNo"` //排序位置
  8. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  9. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  10. }
  11. func (ProgramRelation) TableName() string {
  12. return "media_program_relation"
  13. }
  14. func (c *ProgramRelation) Get() error {
  15. return Db.Debug().Model(&c).Where("is_deleted = 0 and id = ?", c.ID).Find(&c).Error
  16. }
  17. func (c *ProgramRelation) Delete() error {
  18. return Db.Debug().Model(&c).Where("program_id = ?", c.ProgramId).Updates(map[string]interface{}{"is_deleted": c.
  19. IsDeleted}).Error
  20. }
  21. func (c *ProgramRelation) GetByProgram() ([]ProgramRelation, error) {
  22. var relations []ProgramRelation
  23. err := Db.Debug().Model(&c).Where("tenant_id = ? and is_deleted = 0 and program_id = ?", c.TenantId,
  24. c.ProgramId).Order("order_no").Find(&relations).Error
  25. return relations, err
  26. }
  27. func (c *ProgramRelation) Save() error {
  28. return Db.Debug().Model(&c).Save(&c).Error
  29. }
  30. func (c *ProgramRelation) Remove() error {
  31. return Db.Debug().Model(&c).Where("program_id = ?", c.ProgramId).Delete(c).Error
  32. }