| 123456789101112131415161718192021222324252627 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author:kane < chengjin005@163.com>
- // +----------------------------------------------------------------------
- namespace app\talent\model;
- use think\Model;
- class TalentAppointmentModel extends Model
- {
- public function getStatusTextAttr($value, $data)
- {
- $status = [1=>'待确认',2=>'待接站',3=>'待评价',4=>'已完成'];
- return $status[$data['status']];
- }
- public function talent()
- {
- return $this->hasOne(TalentModel::class,'id','talent_id');
- }
- }
|