| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace app\common\model\store\product;
- use app\common\model\BaseModel;
- use app\common\model\store\StoreCategory;
- use app\common\model\system\merchant\Merchant;
- class ProductCopy extends BaseModel
- {
- /**
- * @Author:Qinii
- * @Date: 2020/5/8
- * @return string
- */
- public static function tablePk(): string
- {
- return 'store_product_copy_id';
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/8
- * @return string
- */
- public static function tableName(): string
- {
- return 'store_product_copy';
- }
- public function getInfoAttr($value)
- {
- return json_decode($value) ?: $value;
- }
- public function setInfoAttr($value)
- {
- return json_encode($value,JSON_UNESCAPED_UNICODE);
- }
- public function merchant()
- {
- return $this->hasOne(Merchant::class,'mer_id','mer_id');
- }
- }
|