OrderPriceBean.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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, String productNo,String productName) {
  25. this.clientId = clientId;
  26. this.productNo = productNo;
  27. this.productName = productName;
  28. }
  29. public OrderPriceBean(String clientId,
  30. String codePrice,
  31. String productName,
  32. String rmbPrice,
  33. boolean sellStatus,
  34. String showType) {
  35. this.clientId = clientId;
  36. this.codePrice = codePrice;
  37. this.productName = productName;
  38. this.rmbPrice = rmbPrice;
  39. this.sellStatus = sellStatus;
  40. this.showType = showType;
  41. }
  42. @Override
  43. public String toString() {
  44. return "OrderPriceBean{" +
  45. "clientId='" + clientId + '\'' +
  46. ", codePrice='" + codePrice + '\'' +
  47. ", productName='" + productName + '\'' +
  48. ", productNo='" + productNo + '\'' +
  49. ", rmbPrice='" + rmbPrice + '\'' +
  50. ", sellStatus=" + sellStatus +
  51. ", showType='" + showType + '\'' +
  52. '}';
  53. }
  54. }