ApproveCopy.php 346 B

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