JtOrderResultDetail.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package com.goafanti.order.bo;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class JtOrderResultDetail {
  5. private String orderNo;
  6. private Integer commodityType;
  7. private Date createTime;
  8. private BigDecimal orderAmount;
  9. private String commodityName;
  10. private String sellerId;
  11. private String sellerName;
  12. private String sellerMobile;
  13. private String buyerId;
  14. private String buyerName;
  15. private String buyerMobile;
  16. private String commodityId;
  17. private String ImgUrl;
  18. public String getCommodityId() {
  19. return commodityId;
  20. }
  21. public void setCommodityId(String commodityId) {
  22. this.commodityId = commodityId;
  23. }
  24. public String getOrderNo() {
  25. return orderNo;
  26. }
  27. public void setOrderNo(String orderNo) {
  28. this.orderNo = orderNo;
  29. }
  30. public Integer getCommodityType() {
  31. return commodityType;
  32. }
  33. public void setCommodityType(Integer commodityType) {
  34. this.commodityType = commodityType;
  35. }
  36. public Date getCreateTime() {
  37. return createTime;
  38. }
  39. public void setCreateTime(Date createTime) {
  40. this.createTime = createTime;
  41. }
  42. public BigDecimal getOrderAmount() {
  43. return orderAmount;
  44. }
  45. public void setOrderAmount(BigDecimal orderAmount) {
  46. this.orderAmount = orderAmount;
  47. }
  48. public String getCommodityName() {
  49. return commodityName;
  50. }
  51. public void setCommodityName(String commodityName) {
  52. this.commodityName = commodityName;
  53. }
  54. public String getSellerId() {
  55. return sellerId;
  56. }
  57. public void setSellerId(String sellerId) {
  58. this.sellerId = sellerId;
  59. }
  60. public String getSellerName() {
  61. return sellerName;
  62. }
  63. public void setSellerName(String sellerName) {
  64. this.sellerName = sellerName;
  65. }
  66. public String getSellerMobile() {
  67. return sellerMobile;
  68. }
  69. public void setSellerMobile(String sellerMobile) {
  70. this.sellerMobile = sellerMobile;
  71. }
  72. public String getBuyerId() {
  73. return buyerId;
  74. }
  75. public void setBuyerId(String buyerId) {
  76. this.buyerId = buyerId;
  77. }
  78. public String getBuyerName() {
  79. return buyerName;
  80. }
  81. public void setBuyerName(String buyerName) {
  82. this.buyerName = buyerName;
  83. }
  84. public String getBuyerMobile() {
  85. return buyerMobile;
  86. }
  87. public void setBuyerMobile(String buyerMobile) {
  88. this.buyerMobile = buyerMobile;
  89. }
  90. public String getImgUrl() {
  91. return ImgUrl;
  92. }
  93. public void setImgUrl(String imgUrl) {
  94. ImgUrl = imgUrl;
  95. }
  96. }