家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OrdersProductsMapping.php 389B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Relations\Pivot;
  4. class OrdersProductsMapping extends Pivot
  5. {
  6. protected $fillable = [
  7. 'order_id', // 订单id
  8. 'product_id', // 产品ID
  9. 'product_name', // 产品名称
  10. 'product_price', // 产品价格
  11. 'product_color', // 产品型号款色
  12. 'product_amount', // 购买数量
  13. ];
  14. }