审查视图

application/mobile/model/UserJob.php 1.8 KB
何书鹏 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<?php
namespace app\mobile\model;

use think\Model;

class UserJob extends Model
{
	// 表名
    protected $name = 'mobile_user_job';
    // 开启自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';

    // 追加属性
    protected $append = [
        'type_text',
        'qualification_arr'
    ];


    public function getTypeList(){
        return ['1' => '全职', '2' => '兼职', '3' => '其他'];
    }

    public function getTypeTextAttr($value, $data){
        $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
        $list = $this->getTypeList();
        return isset($list[$value]) ? $list[$value] : '';
    }

    // 格式化开始工作时间
    public function getStartTimeAttr($value, $data){
何书鹏 authored
35
        return date('Y.m.d',$value);
何书鹏 authored
36 37 38 39
    }

    // 格式化结束工作时间
    public function getEndTimeAttr($value, $data){
何书鹏 authored
40
        return date('Y.m.d',$value);
何书鹏 authored
41 42 43 44 45
    }

    // 资质证明
    public function getQualificationArrAttr($value, $data)
    {
何书鹏 authored
46
        $list = !empty($data['qualification']) ? explode(',',$data['qualification']) : [];
何书鹏 authored
47 48 49 50 51 52
        foreach($list as &$v){
            $v = cdnurl($v,true);
        }
        return $list;
    }
何书鹏 authored
53 54 55 56 57 58 59 60 61 62 63
    // 用户信息
    public function user(){
        return $this->belongsTo('user');
    }

    // 简历
    public function getResumeAttr($value, $data)
    {
        return !empty($value) ? cdnurl($value,true) : '';
    }
何书鹏 authored
64 65 66 67 68
    // 简历
    public function userResume()
    {
        return $this->belongsTo('UserResume');
    }
何书鹏 authored
69 70 71 72 73 74

    // 下载记录
    public function download()
    {
        return $this->hasMany('UserJobDownload','user_job_id');
    }
何书鹏 authored
75
}