CoinOrdeBean.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.bgy.autosale.payutil;
  2. import java.io.Serializable;
  3. /**
  4. * @author whw
  5. * @time 2019/5/22
  6. * @Description 作用
  7. */
  8. public class CoinOrdeBean implements Serializable {
  9. /**
  10. * sn : 123455
  11. * name : 棉花糖
  12. * clientId : 71963777bd63e0f0a5b6490f04bf1ae4
  13. * price : 123
  14. * payType : 0
  15. * status : 0
  16. */
  17. private String sn;
  18. private String name;
  19. private String clientId;
  20. private double price;
  21. private int payType;
  22. private String createDate;
  23. private String status;
  24. private Integer productNumber;
  25. private String no;
  26. @Override
  27. public String toString() {
  28. return "CoinOrdeBean{" +
  29. "sn='" + sn + '\'' +
  30. ", name='" + name + '\'' +
  31. ", clientId='" + clientId + '\'' +
  32. ", price=" + price +
  33. ", payType=" + payType +
  34. ", createDate='" + createDate + '\'' +
  35. ", status='" + status + '\'' +
  36. ", productNumber=" + productNumber +
  37. ", no='" + no + '\'' +
  38. '}';
  39. }
  40. public String getNo() {
  41. return no;
  42. }
  43. public void setNo(String no) {
  44. this.no = no;
  45. }
  46. public Integer getProductNumber() {
  47. return productNumber;
  48. }
  49. public String getStatus() {
  50. return status;
  51. }
  52. public void setStatus(String status) {
  53. this.status = status;
  54. }
  55. public String getCreateDate() {
  56. return createDate;
  57. }
  58. public void setCreateDate(String createDate) {
  59. this.createDate = createDate;
  60. }
  61. public String getSn() {
  62. return sn;
  63. }
  64. public void setSn(String sn) {
  65. this.sn = sn;
  66. }
  67. public String getName() {
  68. return name;
  69. }
  70. public void setName(String name) {
  71. this.name = name;
  72. }
  73. public String getClientId() {
  74. return clientId;
  75. }
  76. public void setClientId(String clientId) {
  77. this.clientId = clientId;
  78. }
  79. public double getPrice() {
  80. return price;
  81. }
  82. public void setPrice(double price) {
  83. this.price = price;
  84. }
  85. public int getPayType() {
  86. return payType;
  87. }
  88. public void setPayType(int payType) {
  89. this.payType = payType;
  90. }
  91. public void setProductNumber(Integer productNumber) {
  92. this.productNumber = productNumber;
  93. }
  94. }