// +---------------------------------------------------------------------- namespace app\merchant\model\store; use traits\ModelTrait; use basic\ModelBasic; /** * 点赞and收藏 model * Class StoreProductRelation * @package app\merchant\model\store */ class StoreProductRelation extends ModelBasic { use ModelTrait; public static function getCollect($pid) { $model = new self(); $model = $model->where('r.product_id', $pid)->where('r.type', 'collect'); $model = $model->alias('r')->join('__WECHAT_USER__ u', 'u.uid=r.uid'); $model = $model->field('r.*,u.nickname'); return self::page($model); } public static function getLike($pid) { $model = new self(); $model = $model->where('r.product_id', $pid)->where('r.type', 'like'); $model = $model->alias('r')->join('__WECHAT_USER__ u', 'u.uid=r.uid'); $model = $model->field('r.*,u.nickname'); return self::page($model); } }