12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace app\common\model\store;
- use app\common\model\BaseModel;
- /**
- * Class StoreAttrTemplate
- * @package app\common\model\store
- * @author zfy
- * @day 2020-05-06
- */
- class StoreAttrTemplate extends BaseModel
- {
- /**
- * @return string
- * @author zfy
- * @day 2020-03-30
- */
- public static function tablePk(): string
- {
- return 'attr_template_id';
- }
- /**
- * @return string
- * @author zfy
- * @day 2020-03-30
- */
- public static function tableName(): string
- {
- return 'store_attr_template';
- }
- /**
- * @param $val
- * @return mixed
- * @author zfy
- * @day 2020-05-06
- */
- public function getTemplateValueAttr($val)
- {
- return json_decode($val, true);
- }
- /**
- * @param $val
- * @return false|string
- * @author zfy
- * @day 2020-05-06
- */
- public function setTemplateValueAttr($val)
- {
- return json_encode($val);
- }
- }
|