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

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