TaskSystem/app/common/model/informationg/UserInformationgDemand.php

18 lines
280 B
PHP
Raw Permalink Normal View History

2023-07-29 15:57:31 +08:00
<?php
2023-08-01 15:41:14 +08:00
namespace app\common\model\informationg;
2023-07-29 15:57:31 +08:00
use app\common\model\BaseModel;
class UserInformationgDemand extends BaseModel
{
2023-09-23 14:19:25 +08:00
public function getDataAttr($value)
{
if($value){
return json_decode($value,true);
}
return [];
}
2023-07-29 15:57:31 +08:00
}