52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\model\Erp;
|
|
|
|
use think\Model;
|
|
use think\model\concern\SoftDelete;
|
|
|
|
/**
|
|
* 员工模型
|
|
*/
|
|
class Employee extends Model
|
|
{
|
|
// 启用软删除
|
|
use SoftDelete;
|
|
|
|
// 数据库表名
|
|
protected $name = 'mete_apps_erp_employee';
|
|
|
|
// 字段类型转换
|
|
protected $type = [
|
|
'id' => 'integer',
|
|
'account' => 'string',
|
|
'password' => 'string',
|
|
'name' => 'string',
|
|
'gender' => 'integer',
|
|
'birthday' => 'date',
|
|
'affiliate_unit' => 'string',
|
|
'department' => 'string',
|
|
'position' => 'string',
|
|
'nation' => 'string',
|
|
'phone' => 'string',
|
|
'wechat' => 'string',
|
|
'email' => 'string',
|
|
'home_address' => 'string',
|
|
'account_status' => 'integer',
|
|
'create_time' => 'datetime',
|
|
'update_time' => 'datetime',
|
|
'delete_time' => 'datetime',
|
|
];
|
|
|
|
|
|
}
|