6
0
Fork 0
release
李静 2021-11-30 10:25:09 +08:00
parent 015dd40fc5
commit 763c949f93
1 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,9 @@ class ProductSkuSimpleResource extends JsonResource
'id' => $this->id,
'name' => $this->name,
'cover' => (string) $this->cover,
'sell_price' => (string) $this->sell_price,
'vip_price' => (string) $this->vip_price,
'sales' => (string) $this->sales,
'sell_price' => $this->sell_price,
'vip_price' => $this->vip_price,
'sales' => $this->sales,
];
}
}