Orders.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main
  4. {
  5. public partial class Orders
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public int Version { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public string RefundReason { get; set; }
  20. public decimal ChannelAmount { get; set; }
  21. public string StoreContactMobile { get; set; }
  22. public string SnNos { get; set; }
  23. public string Remark { get; set; }
  24. public int BuyCount { get; set; }
  25. public int PayStatus { get; set; }
  26. public int TopUserId { get; set; }
  27. public int StoreUserId { get; set; }
  28. public int StoreType { get; set; }
  29. public string StoreContact { get; set; }
  30. public int ProductId { get; set; }
  31. public int SendStatus { get; set; }
  32. public string ReturnCode { get; set; }
  33. public string ReturnMsg { get; set; }
  34. public string ResData { get; set; }
  35. public string ReqData { get; set; }
  36. public int DeliveryType { get; set; }
  37. public decimal RefundFeeAmount { get; set; }
  38. public decimal RefundActAmount { get; set; }
  39. public int RefundStatus { get; set; }
  40. public int StoreId { get; set; }
  41. public decimal ActualPay { get; set; }
  42. public DateTime? AutoConfirmDate { get; set; }
  43. public decimal CouponMoney { get; set; }
  44. public string TradeNo { get; set; }
  45. public decimal Integral { get; set; }
  46. public decimal ErpPrice { get; set; }
  47. public int MerchantId { get; set; }
  48. public int PayMode { get; set; }
  49. public DateTime? ConfirmDate { get; set; }
  50. public DateTime? SendDate { get; set; }
  51. public DateTime? PayDate { get; set; }
  52. public string ErpCode { get; set; }
  53. public string ErpName { get; set; }
  54. public int CouponId { get; set; }
  55. public string UserMessage { get; set; }
  56. public int ErpMode { get; set; }
  57. public string PostalCode { get; set; }
  58. public string Address { get; set; }
  59. public string Areas { get; set; }
  60. public decimal TotalPrice { get; set; }
  61. public string Mobile { get; set; }
  62. public string RealName { get; set; }
  63. public string OrderNo { get; set; }
  64. public int UserId { get; set; }
  65. public int ParentOrderId { get; set; }
  66. public int OpId { get; set; }
  67. }
  68. }