OrderPriceBean.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.bgy.autosale.payutil;
  2. import java.io.Serializable;
  3. /**
  4. * @author whw
  5. * @time 2019/4/9
  6. * @Description 要上传价格数据
  7. */
  8. public class OrderPriceBean implements Serializable {
  9. private String clientId;
  10. private String codePrice;
  11. private String productName;
  12. private String productNo;
  13. private String rmbPrice;
  14. private boolean sellStatus;
  15. private String showType;
  16. public OrderPriceBean(String clientId, String codePrice, String productName, String productNo, String rmbPrice, boolean sellStatus) {
  17. this.clientId = clientId;
  18. this.codePrice = codePrice;
  19. this.productName = productName;
  20. this.productNo = productNo;
  21. this.rmbPrice = rmbPrice;
  22. this.sellStatus = sellStatus;
  23. }
  24. public OrderPriceBean(String clientId,
  25. String codePrice,
  26. String productName,
  27. String rmbPrice,
  28. boolean sellStatus,
  29. String showType) {
  30. this.clientId = clientId;
  31. this.codePrice = codePrice;
  32. this.productName = productName;
  33. this.rmbPrice = rmbPrice;
  34. this.sellStatus = sellStatus;
  35. this.showType = showType;
  36. }
  37. @Override
  38. public String toString() {
  39. return "OrderPriceBean{" +
  40. "clientId='" + clientId + '\'' +
  41. ", codePrice='" + codePrice + '\'' +
  42. ", productName='" + productName + '\'' +
  43. ", productNo='" + productNo + '\'' +
  44. ", rmbPrice='" + rmbPrice + '\'' +
  45. ", sellStatus=" + sellStatus +
  46. ", showType='" + showType + '\'' +
  47. '}';
  48. }
  49. }