50 lines
1.5 KiB
PHP
Raw Normal View History

2025-02-27 09:55:33 +08:00
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\works\rlzy;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 企业员工模型
* Class OaAdmin
2025-02-27 17:52:22 +08:00
* @package app\common\model\works\hr
2025-02-27 09:55:33 +08:00
*/
class OaAdmin extends BaseModel
{
use SoftDelete;
protected $name = 'oa_admin';
protected $deleteTime = 'delete_time';
public function getSexTextAttr($value,$data): string
{
$arr = [0=>'未设置', 1=>'男', 2=>'女'];
return $arr[$data['sex']];
}
public function getTypeTextAttr($value,$data): string
{
$arr = [0=>'正式', 1=>'试用', 2=>'实习'];
return $arr[$data['type']];
}
public function getStatusTextAttr($value,$data): string
{
$arr = [0=>'禁用', 1=>'正常', 2=>'离职'];
return $arr[$data['status']];
}
}