DataRecruitment.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace app\data\model;
  3. use Darabonba\GatewaySpi\Models\InterceptorContext\response;
  4. use think\admin\Model;
  5. use app\data\model\SystemUser;
  6. use \app\data\model\DataShipyard;
  7. use think\admin\service\AdminService;
  8. use think\db\Query;
  9. /**
  10. * 招聘信息模型
  11. * Class DataRecruitment
  12. * @package app\data\model
  13. */
  14. class DataRecruitment extends Model
  15. {
  16. /**
  17. * 格式化创建时间
  18. * @param string $value
  19. * @return string
  20. */
  21. public function getCreateAtAttr(string $value): string
  22. {
  23. return format_datetime($value);
  24. }
  25. public function getSalaryStartAttr($_,$model){
  26. if ($model['salary_start']>1000){
  27. return ($model['salary_start']/1000).'K';
  28. }else{
  29. return $model['salary_start'];
  30. }
  31. }
  32. public function getSalaryEndAttr($_,$model){
  33. if ($model['salary_end']>1000){
  34. return ($model['salary_end']/1000).'K';
  35. }else{
  36. return $model['salary_end'];
  37. }
  38. }
  39. public function datauser(){
  40. return $this->belongsTo(SystemUser::class,'uid');
  41. }
  42. public function shipyard(){
  43. return $this->belongsTo(DataShipyard::class,'shipyard_id');
  44. }
  45. public function scopeShow(Query $query)
  46. {
  47. $query->where('is_del',1);
  48. }
  49. public static function onAfterRead(\think\Model $model)
  50. {
  51. if (!$model['uid']){
  52. $model['shipyard'] = [
  53. 'id'=>0,
  54. 'name'=>'平台'
  55. ];
  56. }
  57. }
  58. public static function onBeforeInsert(\think\Model $model)
  59. {
  60. if(AdminService::getUserId()==10000){
  61. $model['uid'] = 0;
  62. } else{
  63. $model['uid']=AdminService::getUserId();
  64. $model['shipyard_id'] = SystemUser::mk()->where('id',AdminService::getUserId())->value('link_id');
  65. }
  66. }
  67. }