EvectionApprove.php 404 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\common\model;
  3. use app\common\constant\CommonConstant;
  4. use think\Model;
  5. /**
  6. * 出差审批模型
  7. */
  8. class EvectionApprove extends Model
  9. {
  10. // 表名
  11. protected $name = 'evection_approve';
  12. // 关联用户
  13. public function user()
  14. {
  15. return $this->belongsTo(User::class, 'approve_user', 'userid')->where('is_deleted',CommonConstant::IS_DELETED_0);
  16. }
  17. }