|
|
@ -34,10 +34,10 @@ class Feedback extends BaseModel |
|
|
|
* @param int $storeId |
|
|
|
* @param int $storeId |
|
|
|
* @return static|array|null |
|
|
|
* @return static|array|null |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static function detail(int $merchantId) |
|
|
|
public static function detail(int $feedbackId) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$where = [ |
|
|
|
$where = [ |
|
|
|
'merchant_id' => $merchantId, |
|
|
|
'feedback_id' => $feedbackId, |
|
|
|
//'store_id' => self::$storeId |
|
|
|
//'store_id' => self::$storeId |
|
|
|
]; |
|
|
|
]; |
|
|
|
return static::get($where, []); |
|
|
|
return static::get($where, []); |
|
|
|