programRelationDao.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. OrderNo int `gorm:"type:int" json:"orderNo"` //排序位置
  7. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  8. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  9. }
  10. func (ProgramRelation) TableName() string {
  11. return "media_program_relation"
  12. }
  13. func (c *ProgramRelation) Get() error {
  14. return Db.Debug().Model(&c).Where("is_deleted = 0 and id = ?", c.ID).Find(&c).Error
  15. }
  16. func (c *ProgramRelation) Delete() error {
  17. return Db.Debug().Model(&c).Where("program_id = ?", c.ProgramId).Updates(map[string]interface{}{"is_deleted": c.
  18. IsDeleted}).Error
  19. }
  20. func (c *ProgramRelation) GetByProgram() ([]ProgramRelation, error) {
  21. var relations []ProgramRelation
  22. err := Db.Debug().Model(&c).Where("tenant_id = ? and is_deleted = 0 and program_id = ?", c.TenantId,
  23. c.ProgramId).Order("order_no").Find(&relations).Error
  24. return relations, err
  25. }
  26. func (c *ProgramRelation) Save() error {
  27. return Db.Debug().Model(&c).Save(&c).Error
  28. }
  29. func (c *ProgramRelation) Remove() error {
  30. return Db.Debug().Model(&c).Where("program_id = ?", c.ProgramId).Delete(c).Error
  31. }