家政小程序
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.

ProductOrder.php 767B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Class ProductOrder
  6. * @package App\Models
  7. * 产品订单
  8. */
  9. class ProductOrder extends Model
  10. {
  11. public $classify1 = "产品";
  12. public $classify2 = "产品";
  13. public $order_type = "product_order";
  14. protected $fillable = [
  15. 'wechat_id', // 微信号id(open_id)
  16. 'product_id', // 产品名称
  17. 'product_name', // 产品信息
  18. 'color', // 产品颜色款色
  19. 'unit', // 产品单格
  20. 'amount', // 产品数量
  21. 'price', // 订单总价
  22. 'status', // 订单状态
  23. 'remark', // 买家备注
  24. 'info', // 卖家信息
  25. 'contact', // 买家联系人
  26. 'address', // 买家地址
  27. 'phone', // 买家手机号码,
  28. 'photo' // 显示的图片
  29. ];
  30. }