using System; namespace MySystem { public class MqOrder { //订单Id public int id { get; set; } //订单状态(0待付款,1已付款,2已完成,3已发货,4已退款) public int status { get; set; } //创建时间 public DateTime? createDate { get; set; } //发货的机具券码 public string snNos { get; set; } //备注 public string remark { get; set; } //购买数量 public int buyCount { get; set; } //支付状态 public int payStatus { get; set; } //商品id public int productId { get; set; } //发货状态 public int sendStatus { get; set; } //提货方式(1邮寄到付,2上门自提) public int deliveryType { get; set; } //退款状态 public int refundStatus { get; set; } //支付方式(1支付宝,3余额,4储蓄金) public int payMode { get; set; } //发货时间 public string sendDate { get; set; } //支付时间 public string payDate { get; set; } //邮政编码 public string postalCode { get; set; } //详细地址 public string address { get; set; } //所在省市区 public string areas { get; set; } //支付总金额 public decimal totalPrice { get; set; } //联系手机号 public string mobile { get; set; } //联系人姓名 public string realName { get; set; } //订单号 public string orderNo { get; set; } //创客Id public int userId { get; set; } //父级订单Id(拆单用) public int parentOrderId { get; set; } } }