Commit 4d7ec620 authored by 章建武's avatar 章建武

de

parent abbdeda7
<?php
/**
* 就业岗位模型
*/
namespace app\common\model;
use think\model\concern\SoftDelete;
class JoinUs extends Model
{
use SoftDelete;
public $softDelete = true;
protected $autoWriteTimestamp = true;
//可搜索字段
protected $searchField = ['title', 'source','type'];
public $language_type = [
0 => '中文',
1 => '英语'
];
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment