// +---------------------------------------------------------------------- namespace app\common\model\system\form; use app\common\model\BaseModel; /** * Class Cache * @package app\common\model\system * @author xaboy * @day 2020-04-24 */ class Form extends BaseModel { /** * @return string * @author xaboy * @day 2020-03-30 */ public static function tablePk(): string { return 'form_id'; } /** * @return string * @author xaboy * @day 2020-03-30 */ public static function tableName(): string { return 'system_form'; } public function getValueAttr($value) { return json_decode($value); } public function getFormKeysAttr($value) { return json_decode($value); } }