AgentApply.php 277 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\model;
  3. use app\common\model\TimeModel;
  4. use think\Model;
  5. class AgentApply extends Model
  6. {
  7. protected $name = "agent_apply";
  8. public function area ()
  9. {
  10. return $this->belongsTo('app\common\model\Area', 'agent_area', 'id');
  11. }
  12. }