123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace app\data\model;
- use Darabonba\GatewaySpi\Models\InterceptorContext\response;
- use think\admin\Model;
- use app\data\model\SystemUser;
- use \app\data\model\DataShipyard;
- use think\admin\service\AdminService;
- use think\db\Query;
- /**
- * 招聘信息模型
- * Class DataRecruitment
- * @package app\data\model
- */
- class DataRecruitment extends Model
- {
- /**
- * 格式化创建时间
- * @param string $value
- * @return string
- */
- public function getCreateAtAttr(string $value): string
- {
- return format_datetime($value);
- }
- public function getSalaryStartAttr($_,$model){
- if ($model['salary_start']>=1000){
- return ($model['salary_start']/1000).'K';
- }else{
- return $model['salary_start'];
- }
- }
- public function getSalaryEndAttr($_,$model){
- if ($model['salary_end']>=1000){
- return ($model['salary_end']/1000).'K';
- }else{
- return $model['salary_end'];
- }
- }
- public function datauser(){
- return $this->belongsTo(SystemUser::class,'uid');
- }
- public function shipyard(){
- return $this->belongsTo(DataShipyard::class,'shipyard_id');
- }
- public function scopeShow(Query $query)
- {
- $query->where('is_del',1);
- }
- public static function onAfterRead(\think\Model $model)
- {
- if (!$model['uid']){
- $model['shipyard'] = [
- 'id'=>0,
- 'name'=>'平台'
- ];
- }
- }
- public static function onBeforeInsert(\think\Model $model)
- {
- if(AdminService::getUserId()==10000){
- $model['uid'] = 0;
- } else{
- $model['uid']=AdminService::getUserId();
- $model['shipyard_id'] = SystemUser::mk()->where('id',AdminService::getUserId())->value('link_id');
- }
- }
- }
|