已使用商品数量

This commit is contained in:
2024-04-17 11:46:59 +08:00
parent f83580508a
commit df935b6c82
3 changed files with 30 additions and 26 deletions
+4 -3
View File
@@ -16,9 +16,10 @@ use Hyperf\Snowflake\Concern\Snowflake;
* @property int $product_id 商品id
* @property string $product_name 商品名称
* @property int $quantity 商品数量
* @property int $used_quantity 已使用数量
* @property string $discount_product_price 折扣商品价格
* @property Carbon $created_at 创建时间
* @property Carbon $updated_at 修改时间
* @property \Carbon\Carbon $created_at 创建时间
* @property \Carbon\Carbon $updated_at 修改时间
*/
class OrderServicePackageProduct extends Model
{
@@ -32,7 +33,7 @@ class OrderServicePackageProduct extends Model
/**
* The attributes that are mass assignable.
*/
protected array $fillable = ['service_product_id', 'order_service_id', 'product_id', 'product_name', 'quantity', 'discount_product_price', 'created_at', 'updated_at'];
protected array $fillable = ['service_product_id', 'order_service_id', 'product_id', 'product_name', 'quantity', 'used_quantity', 'discount_product_price', 'created_at', 'updated_at'];
protected string $primaryKey = "service_product_id";