* +---------------------------------------------------------------------- */ namespace app\model\system; use crmeb\basic\BaseModel; /** * Class SystemCrud * @author 等风来 * @email 136327134@qq.com * @date 2023/4/6 * @package app\model\system */ class SystemCrud extends BaseModel { /** * @var string */ protected $name = 'system_crud'; /** * @var string */ protected $pk = 'id'; public function getAddTimeAttr($value) { return date('Y-m-d H:i:s', $value); } public function getFieldAttr($value) { return json_decode($value, true); } public function getMenuIdsAttr($value) { return json_decode($value, true); } public function getMakePathAttr($value) { return json_decode($value, true); } public function getRouteIdsAttr($value) { return json_decode($value, true); } }