eb8b391e6b93e4b2a73e6423987fd36762f93156.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package com.chinacreator.videoalliance.order.bean;
  2. public class SPInfo
  3. {
  4. private String spid;
  5. private String cpid;
  6. private String spname;
  7. private String price;
  8. private String vacproductid;
  9. private String spcode;
  10. private int type;
  11. private int feetype;
  12. private int cancancelorder;
  13. private int canorder;
  14. private int errorhandle;
  15. private String duration;
  16. private String canaccumulation;
  17. private String mutex;
  18. private String relationSp;
  19. private int paytype;
  20. private String spcodename;
  21. private String needUnifiedAuthSync;
  22. private String haslocal;
  23. //产品标识,1前向,2后向,3前向合约,4后向合约
  24. private String directype;
  25. public String getDirectype() {
  26. return directype;
  27. }
  28. public void setDirectype(String directype) {
  29. this.directype = directype;
  30. }
  31. public String getHaslocal() {
  32. return haslocal;
  33. }
  34. public void setHaslocal(String haslocal) {
  35. this.haslocal = haslocal;
  36. }
  37. public String getSpcodename() {
  38. return spcodename;
  39. }
  40. public void setSpcodename(String spcodename) {
  41. this.spcodename = spcodename;
  42. }
  43. public String getNeedUnifiedAuthSync() {
  44. return needUnifiedAuthSync;
  45. }
  46. public void setNeedUnifiedAuthSync(String needUnifiedAuthSync) {
  47. this.needUnifiedAuthSync = needUnifiedAuthSync;
  48. }
  49. public int getPaytype() {
  50. return paytype;
  51. }
  52. public void setPaytype(int paytype) {
  53. this.paytype = paytype;
  54. }
  55. public String getMutex()
  56. {
  57. return this.mutex;
  58. }
  59. public void setMutex(String mutex) {
  60. this.mutex = mutex;
  61. }
  62. public String getRelationSp() {
  63. return this.relationSp;
  64. }
  65. public void setRelationSp(String relationSp) {
  66. this.relationSp = relationSp;
  67. }
  68. public String getCanaccumulation() {
  69. return this.canaccumulation;
  70. }
  71. public void setCanaccumulation(String canaccumulation) {
  72. this.canaccumulation = canaccumulation;
  73. }
  74. public String getDuration() {
  75. return this.duration;
  76. }
  77. public void setDuration(String duration) {
  78. this.duration = duration;
  79. }
  80. public int getErrorhandle() {
  81. return this.errorhandle;
  82. }
  83. public void setErrorhandle(int errorhandle) {
  84. this.errorhandle = errorhandle;
  85. }
  86. public String getSpid() {
  87. return this.spid;
  88. }
  89. public void setSpid(String spid) {
  90. this.spid = spid;
  91. }
  92. public String getCpid() {
  93. return this.cpid;
  94. }
  95. public void setCpid(String cpid) {
  96. this.cpid = cpid;
  97. }
  98. public String getSpname() {
  99. return this.spname;
  100. }
  101. public void setSpname(String spname) {
  102. this.spname = spname;
  103. }
  104. public String getPrice() {
  105. return this.price;
  106. }
  107. public void setPrice(String price) {
  108. this.price = price;
  109. }
  110. public String getVacproductid() {
  111. return this.vacproductid;
  112. }
  113. public void setVacproductid(String vacproductid) {
  114. this.vacproductid = vacproductid;
  115. }
  116. public String getSpcode() {
  117. return this.spcode;
  118. }
  119. public void setSpcode(String spcode) {
  120. this.spcode = spcode;
  121. }
  122. public int getType() {
  123. return this.type;
  124. }
  125. public void setType(int type) {
  126. this.type = type;
  127. }
  128. public int getFeetype() {
  129. return this.feetype;
  130. }
  131. public void setFeetype(int feetype) {
  132. this.feetype = feetype;
  133. }
  134. public int getCancancelorder() {
  135. return this.cancancelorder;
  136. }
  137. public void setCancancelorder(int cancancelorder) {
  138. this.cancancelorder = cancancelorder;
  139. }
  140. public int getCanorder() {
  141. return this.canorder;
  142. }
  143. public void setCanorder(int canorder) {
  144. this.canorder = canorder;
  145. }
  146. }