d6d68a514a65923ed527dd4e56f69f5607811838.svn-base 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. package com.chinacreator.process.bean;
  2. import java.util.Date;
  3. public class SDKOrderInfo {
  4. //1:预订购,2:用户订购,3:营业厅订购,4:用户退订,5:营业厅退订,6:客服退订
  5. public static final int PRE_ORDER = 1;
  6. public static final int USER_ORDER = 2;
  7. public static final int VAC_ORDER = 3;
  8. public static final int USER_CANCEL_ORDER = 4;
  9. public static final int VAC_CANCEL_ORDER = 5;
  10. public static final int KF_CANCEL_ORDER = 6;
  11. public static final int CARD_ORDER = 8;
  12. public static final int CARD_CANCEL_ORDER = 9;
  13. private String id;
  14. private String cpid;
  15. private String productId;
  16. private String appid;
  17. private String appType;
  18. private String status;
  19. private String userid;
  20. private String province;
  21. private String area;
  22. private Date orderTime;
  23. private int orderType;
  24. private Date cancelTime;
  25. private int cancelType;
  26. private Date endtime;
  27. private Date effectiveTime;
  28. private String orderChannel;
  29. private String cancelChannel;
  30. private int type;
  31. private int syncCount;
  32. private int syncSucceed;
  33. private Date lastSyncTime;
  34. private int isSiLence;
  35. private int isExperience;
  36. private String videoId;
  37. private String videoName;
  38. private String videoUrl;
  39. private String videoTag;
  40. private int orderWay;
  41. private String sectionId;
  42. private String videoImage;
  43. private String productName;
  44. private int effictLenth;
  45. private int orderStatus;
  46. private String ordertimestr;
  47. private String canceltimestr;
  48. private String endtimestr;
  49. public String getEndtimestr() {
  50. return endtimestr;
  51. }
  52. public void setEndtimestr(String endtimestr) {
  53. this.endtimestr = endtimestr;
  54. }
  55. public String getOrdertimestr() {
  56. return ordertimestr;
  57. }
  58. public void setOrdertimestr(String ordertimestr) {
  59. this.ordertimestr = ordertimestr;
  60. }
  61. public String getCanceltimestr() {
  62. return canceltimestr;
  63. }
  64. public void setCanceltimestr(String canceltimestr) {
  65. this.canceltimestr = canceltimestr;
  66. }
  67. public int getOrderStatus() {
  68. return orderStatus;
  69. }
  70. public void setOrderStatus(int orderStatus) {
  71. this.orderStatus = orderStatus;
  72. }
  73. public int getEffictLenth() {
  74. return effictLenth;
  75. }
  76. public void setEffictLenth(int effictLenth) {
  77. this.effictLenth = effictLenth;
  78. }
  79. public String getProductName() {
  80. return productName;
  81. }
  82. public void setProductName(String productName) {
  83. this.productName = productName;
  84. }
  85. public String getCancelChannel() {
  86. return cancelChannel;
  87. }
  88. public void setCancelChannel(String cancelChannel) {
  89. this.cancelChannel = cancelChannel;
  90. }
  91. public String getVideoImage() {
  92. return videoImage;
  93. }
  94. public void setVideoImage(String videoImage) {
  95. this.videoImage = videoImage;
  96. }
  97. public String getSectionId() {
  98. return sectionId;
  99. }
  100. public void setSectionId(String sectionId) {
  101. this.sectionId = sectionId;
  102. }
  103. public int getOrderWay() {
  104. return orderWay;
  105. }
  106. public void setOrderWay(int orderWay) {
  107. this.orderWay = orderWay;
  108. }
  109. public String getId() {
  110. return id;
  111. }
  112. public void setId(String id) {
  113. this.id = id;
  114. }
  115. public String getCpid() {
  116. return cpid;
  117. }
  118. public void setCpid(String cpid) {
  119. this.cpid = cpid;
  120. }
  121. public String getProductId() {
  122. return productId;
  123. }
  124. public void setProductId(String productId) {
  125. this.productId = productId;
  126. }
  127. public String getAppid() {
  128. return appid;
  129. }
  130. public void setAppid(String appid) {
  131. this.appid = appid;
  132. }
  133. public String getAppType() {
  134. return appType;
  135. }
  136. public void setAppType(String appType) {
  137. this.appType = appType;
  138. }
  139. public String getStatus() {
  140. return status;
  141. }
  142. public void setStatus(String status) {
  143. this.status = status;
  144. }
  145. public String getUserid() {
  146. return userid;
  147. }
  148. public void setUserid(String userid) {
  149. this.userid = userid;
  150. }
  151. public String getProvince() {
  152. return province;
  153. }
  154. public void setProvince(String province) {
  155. this.province = province;
  156. }
  157. public String getArea() {
  158. return area;
  159. }
  160. public void setArea(String area) {
  161. this.area = area;
  162. }
  163. public Date getOrderTime() {
  164. return orderTime;
  165. }
  166. public void setOrderTime(Date orderTime) {
  167. this.orderTime = orderTime;
  168. }
  169. public int getOrderType() {
  170. return orderType;
  171. }
  172. public void setOrderType(int orderType) {
  173. this.orderType = orderType;
  174. }
  175. public Date getCancelTime() {
  176. return cancelTime;
  177. }
  178. public void setCancelTime(Date cancelTime) {
  179. this.cancelTime = cancelTime;
  180. }
  181. public int getCancelType() {
  182. return cancelType;
  183. }
  184. public void setCancelType(int cancelType) {
  185. this.cancelType = cancelType;
  186. }
  187. public Date getEndtime() {
  188. return endtime;
  189. }
  190. public void setEndtime(Date endtime) {
  191. this.endtime = endtime;
  192. }
  193. public Date getEffectiveTime() {
  194. return effectiveTime;
  195. }
  196. public void setEffectiveTime(Date effectiveTime) {
  197. this.effectiveTime = effectiveTime;
  198. }
  199. public String getOrderChannel() {
  200. return orderChannel;
  201. }
  202. public void setOrderChannel(String orderChannel) {
  203. this.orderChannel = orderChannel;
  204. }
  205. public int getType() {
  206. return type;
  207. }
  208. public void setType(int type) {
  209. this.type = type;
  210. }
  211. public int getSyncCount() {
  212. return syncCount;
  213. }
  214. public void setSyncCount(int syncCount) {
  215. this.syncCount = syncCount;
  216. }
  217. public int getSyncSucceed() {
  218. return syncSucceed;
  219. }
  220. public void setSyncSucceed(int syncSucceed) {
  221. this.syncSucceed = syncSucceed;
  222. }
  223. public Date getLastSyncTime() {
  224. return lastSyncTime;
  225. }
  226. public void setLastSyncTime(Date lastSyncTime) {
  227. this.lastSyncTime = lastSyncTime;
  228. }
  229. public int getIsSiLence() {
  230. return isSiLence;
  231. }
  232. public void setIsSiLence(int isSiLence) {
  233. this.isSiLence = isSiLence;
  234. }
  235. public int getIsExperience() {
  236. return isExperience;
  237. }
  238. public void setIsExperience(int isExperience) {
  239. this.isExperience = isExperience;
  240. }
  241. public String getVideoId() {
  242. return videoId;
  243. }
  244. public void setVideoId(String videoId) {
  245. this.videoId = videoId;
  246. }
  247. public String getVideoName() {
  248. return videoName;
  249. }
  250. public void setVideoName(String videoName) {
  251. this.videoName = videoName;
  252. }
  253. public String getVideoUrl() {
  254. return videoUrl;
  255. }
  256. public void setVideoUrl(String videoUrl) {
  257. this.videoUrl = videoUrl;
  258. }
  259. public String getVideoTag() {
  260. return videoTag;
  261. }
  262. public void setVideoTag(String videoTag) {
  263. this.videoTag = videoTag;
  264. }
  265. }