Matchvoice.php 701 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace app\admin\model\match;
  3. use think\Model;
  4. class Matchvoice extends Model
  5. {
  6. // 表名
  7. protected $name = 'match_voice';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. public function user()
  15. {
  16. return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  17. }
  18. public function matchtype()
  19. {
  20. return $this->belongsTo('app\admin\model\match\MatchType', 'type_id', 'id', [], 'LEFT')->setEagerlyType(0);
  21. }
  22. }