DataNotice.php 512 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\data\model;
  3. use think\admin\Model;
  4. use think\db\Query;
  5. use think\helper\Str;
  6. /**
  7. * @method static|Query show()
  8. */
  9. class DataNotice extends Model
  10. {
  11. public function readUser(){
  12. return $this->belongsToMany(DataUser::class,DataNoticeRead::class,'notice_id','uuid');
  13. }
  14. public function reads(){
  15. return $this->hasMany(DataNoticeRead::class,'notice_id');
  16. }
  17. public static function onAfterDelete(self $model): void
  18. {
  19. $model->read()->delete();
  20. }
  21. }