12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\common\model\store\product;
- use app\common\model\BaseModel;
- use app\common\model\store\order\StoreOrderProduct;
- use app\common\repositories\store\product\ProductAttrValueRepository;
- /**
- * Class ProductReply
- * @package app\common\model\store\product
- * @author xaboy
- * @day 2020/5/30
- */
- class ProductReply extends BaseModel
- {
- /**
- * @Author:Qinii
- * @Date: 2020/5/8
- * @return string
- */
- public static function tablePk(): string
- {
- return 'reply_id';
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/8
- * @return string
- */
- public static function tableName(): string
- {
- return 'store_product_reply';
- }
- public function getPicsAttr($value)
- {
- return $value ? explode(',', $value) : [];
- }
- public function setPicsAttr($value)
- {
- return $value ? implode(',', $value) : '';
- }
- public function product()
- {
- return $this->hasOne(Product::class, 'product_id', 'product_id');
- }
- public function orderProduct()
- {
- return $this->hasOne(StoreOrderProduct::class,'order_product_id','order_product_id');
- }
- }
|