EsmAgreementProd.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package com.ydtech.modules.esm.model;
  2. import java.io.Serializable;
  3. public class EsmAgreementProd implements Serializable {
  4. private static final long serialVersionUID = 4715085681443607972L;
  5. private String id;
  6. private String agreeid;
  7. private String agreementcode;
  8. private String productid;
  9. private String feestyle;
  10. private String product;
  11. private String feetype;
  12. private double productrate;
  13. private String canprovince;
  14. private String cancity;
  15. private String canlicense;
  16. private String cancarkind;
  17. private String canusenature;
  18. private double keeprate;
  19. private double feerate;
  20. private String authcomcode;
  21. public static long getSerialVersionUID() {
  22. return serialVersionUID;
  23. }
  24. public String getId() {
  25. return id;
  26. }
  27. public void setId(String id) {
  28. this.id = id;
  29. }
  30. public String getAgreeid() {
  31. return agreeid;
  32. }
  33. public void setAgreeid(String agreeid) {
  34. this.agreeid = agreeid;
  35. }
  36. public String getAgreementcode() {
  37. return agreementcode;
  38. }
  39. public void setAgreementcode(String agreementcode) {
  40. this.agreementcode = agreementcode;
  41. }
  42. public String getProductid() {
  43. return productid;
  44. }
  45. public void setProductid(String productid) {
  46. this.productid = productid;
  47. }
  48. public String getFeestyle() {
  49. return feestyle;
  50. }
  51. public void setFeestyle(String feestyle) {
  52. this.feestyle = feestyle;
  53. }
  54. public String getProduct() {
  55. return product;
  56. }
  57. public void setProduct(String product) {
  58. this.product = product;
  59. }
  60. public String getFeetype() {
  61. return feetype;
  62. }
  63. public void setFeetype(String feetype) {
  64. this.feetype = feetype;
  65. }
  66. public double getProductrate() {
  67. return productrate;
  68. }
  69. public void setProductrate(double productrate) {
  70. this.productrate = productrate;
  71. }
  72. public String getCanprovince() {
  73. return canprovince;
  74. }
  75. public void setCanprovince(String canprovince) {
  76. this.canprovince = canprovince;
  77. }
  78. public String getCancity() {
  79. return cancity;
  80. }
  81. public void setCancity(String cancity) {
  82. this.cancity = cancity;
  83. }
  84. public String getCanlicense() {
  85. return canlicense;
  86. }
  87. public void setCanlicense(String canlicense) {
  88. this.canlicense = canlicense;
  89. }
  90. public String getCancarkind() {
  91. return cancarkind;
  92. }
  93. public void setCancarkind(String cancarkind) {
  94. this.cancarkind = cancarkind;
  95. }
  96. public String getCanusenature() {
  97. return canusenature;
  98. }
  99. public void setCanusenature(String canusenature) {
  100. this.canusenature = canusenature;
  101. }
  102. public double getKeeprate() {
  103. return keeprate;
  104. }
  105. public void setKeeprate(double keeprate) {
  106. this.keeprate = keeprate;
  107. }
  108. public double getFeerate() {
  109. return feerate;
  110. }
  111. public void setFeerate(double feerate) {
  112. this.feerate = feerate;
  113. }
  114. public String getAuthcomcode() {
  115. return authcomcode;
  116. }
  117. public void setAuthcomcode(String authcomcode) {
  118. this.authcomcode = authcomcode;
  119. }
  120. }