ManageHr.php
391 字节
<?php
namespace App\Models\Manage;
use App\Models\Base;
class ManageHr extends Base
{
protected $table = 'gl_manage_hr';
/**
* 特殊字段
* @return string[]
* @author zgj
* @date 2023/5/31
*/
public static function specieField(){
return ['photo_gallery','id_card_gallery','certificate_gallery','career_history','learning_history'];
}
}