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

123456789101112131415161718192021222324252627282930313233
  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. protected $classify1 = "产品";
  12. protected $classify2 = "产品";
  13. protected $fillable = [
  14. 'wechat_id', // 微信号id(open_id)
  15. 'product_id', // 产品名称
  16. 'product_name', // 产品信息
  17. 'color', // 产品颜色款色
  18. 'unit', // 产品单格
  19. 'amount', // 产品数量
  20. 'price', // 订单总价
  21. 'status', // 订单状态
  22. 'remark', // 买家备注
  23. 'info', // 卖家信息
  24. 'contact', // 买家联系人
  25. 'address', // 买家地址
  26. 'phone' // 买家手机号码
  27. ];
  28. }