d40c8e963a698f1b71f53e409c2af839396ed930.svn-base 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. package com.chinacreator.videoalliance.order.bean;
  2. public class OrderInfo {
  3. private String id;
  4. private String cpid;
  5. private String spid;
  6. private String userid;
  7. private String ordertime;
  8. private String endtime;
  9. private String canceltime;
  10. private String effecttime;
  11. private int status;
  12. private String orderchannel;
  13. private String cancelchannel;
  14. private int ordertype = 0;
  15. private int orderstatus;
  16. private String videoid;
  17. private String videoname;
  18. private int type;
  19. private String apptype;
  20. private String province;
  21. private String area;
  22. private String channel;
  23. private int isexperience = 0;
  24. private String productid;
  25. private String showstatus = "";
  26. private String payuserid;
  27. private boolean canadd;
  28. private String mutex;
  29. private int paytype;
  30. private String relationSp;
  31. private int cachesucceed = 1;
  32. private int errorhandle;
  33. private String times;
  34. //for auth
  35. private String token;
  36. private String access = "1";
  37. private String seqnumber;
  38. private String orderid; //优酷后向产品
  39. private String signature;
  40. private String timestamp;
  41. private String reorderid; //优酷后向退订时传值,订购时的订单ID
  42. private String subchannel; //拓维后向渠道标识
  43. //产品标识,1前向,2后向,3前向合约,4后向合约
  44. private String directype;
  45. private String provinceCode;//限制省份编码
  46. private String timeType; //限制类型
  47. private String subtype; //1为CAP短信接口,2为自有短信接口
  48. /**
  49. * 能力平台次月生效同步状态,同步状态,1待处理,2处理中,3失败,0成功,4不处理,对应表TL_NMA_ORDER_LOG的SYNCSTATUS字段
  50. */
  51. private String syncstatus;
  52. /**
  53. * cap退订状态
  54. */
  55. private String isvacorder;
  56. private String invokeface; //调接口名称,用于权限验证
  57. private String extend1;
  58. public String getIsvacorder() {
  59. return isvacorder;
  60. }
  61. public void setIsvacorder(String isvacorder) {
  62. this.isvacorder = isvacorder;
  63. }
  64. public String getExtend1() {
  65. return this.extend1;
  66. }
  67. public void setExtend1(String extend1) {
  68. this.extend1 = extend1;
  69. }
  70. public String getInvokeface() {
  71. return invokeface;
  72. }
  73. public void setInvokeface(String invokeface) {
  74. this.invokeface = invokeface;
  75. }
  76. public String getSyncstatus() {
  77. return syncstatus;
  78. }
  79. public void setSyncstatus(String syncstatus) {
  80. this.syncstatus = syncstatus;
  81. }
  82. public String getSubtype() {
  83. return subtype;
  84. }
  85. public void setSubtype(String subtype) {
  86. this.subtype = subtype;
  87. }
  88. public String getProvinceCode() {
  89. return provinceCode;
  90. }
  91. public void setProvinceCode(String provinceNum) {
  92. this.provinceCode = provinceNum;
  93. }
  94. public String getTimeType() {
  95. return timeType;
  96. }
  97. public void setTimeType(String timeType) {
  98. this.timeType = timeType;
  99. }
  100. public String getDirectype() {
  101. return directype;
  102. }
  103. public void setDirectype(String directype) {
  104. this.directype = directype;
  105. }
  106. public String getSubchannel() {
  107. return subchannel;
  108. }
  109. public void setSubchannel(String subchannel) {
  110. this.subchannel = subchannel;
  111. }
  112. public String getChannel() {
  113. return channel;
  114. }
  115. public void setChannel(String channel) {
  116. this.channel = channel;
  117. }
  118. public String getReorderid() {
  119. return reorderid;
  120. }
  121. public void setReorderid(String reorderid) {
  122. this.reorderid = reorderid;
  123. }
  124. public String getTimestamp() {
  125. return timestamp;
  126. }
  127. public void setTimestamp(String timestamp) {
  128. this.timestamp = timestamp;
  129. }
  130. public String getSignature() {
  131. return signature;
  132. }
  133. public void setSignature(String signature) {
  134. this.signature = signature;
  135. }
  136. public String getOrderid() {
  137. return orderid;
  138. }
  139. public void setOrderid(String orderid) {
  140. this.orderid = orderid;
  141. }
  142. public String getSeqnumber() {
  143. return seqnumber;
  144. }
  145. public void setSeqnumber(String seqnumber) {
  146. this.seqnumber = seqnumber;
  147. }
  148. public String getAccess() {
  149. return access;
  150. }
  151. public void setAccess(String access) {
  152. this.access = access;
  153. }
  154. public String getToken() {
  155. return token;
  156. }
  157. public void setToken(String token) {
  158. this.token = token;
  159. }
  160. public String getTimes() {
  161. return times;
  162. }
  163. public void setTimes(String times) {
  164. this.times = times;
  165. }
  166. public int getErrorhandle() {
  167. return this.errorhandle;
  168. }
  169. public void setErrorhandle(int errorhandle) {
  170. this.errorhandle = errorhandle;
  171. }
  172. public int getCachesucceed() {
  173. return this.cachesucceed;
  174. }
  175. public void setCachesucceed(int cachesucceed) {
  176. this.cachesucceed = cachesucceed;
  177. }
  178. public String getRelationSp() {
  179. return this.relationSp;
  180. }
  181. public void setRelationSp(String relationSp) {
  182. this.relationSp = relationSp;
  183. }
  184. public int getPaytype() {
  185. return this.paytype;
  186. }
  187. public void setPaytype(int paytype) {
  188. this.paytype = paytype;
  189. }
  190. public String getMutex() {
  191. return this.mutex;
  192. }
  193. public void setMutex(String mutex) {
  194. this.mutex = mutex;
  195. }
  196. public boolean isCanadd() {
  197. return this.canadd;
  198. }
  199. public void setCanadd(boolean canadd) {
  200. this.canadd = canadd;
  201. }
  202. public String getPayuserid() {
  203. return this.payuserid;
  204. }
  205. public void setPayuserid(String payuserid) {
  206. this.payuserid = payuserid;
  207. }
  208. public String getCpid() {
  209. return this.cpid;
  210. }
  211. public void setCpid(String cpid) {
  212. this.cpid = cpid;
  213. }
  214. public String getSpid() {
  215. return this.spid;
  216. }
  217. public void setSpid(String spid) {
  218. this.spid = spid;
  219. }
  220. public String getUserid() {
  221. return this.userid;
  222. }
  223. public void setUserid(String userid) {
  224. this.userid = userid;
  225. }
  226. public String getOrdertime() {
  227. return this.ordertime;
  228. }
  229. public void setOrdertime(String ordertime) {
  230. this.ordertime = ordertime;
  231. }
  232. public String getEndtime() {
  233. return this.endtime;
  234. }
  235. public void setEndtime(String endtime) {
  236. this.endtime = endtime;
  237. }
  238. public String getCanceltime() {
  239. return this.canceltime;
  240. }
  241. public void setCanceltime(String canceltime) {
  242. this.canceltime = canceltime;
  243. }
  244. public String getEffecttime() {
  245. return this.effecttime;
  246. }
  247. public void setEffecttime(String effecttime) {
  248. this.effecttime = effecttime;
  249. }
  250. public int getStatus() {
  251. return this.status;
  252. }
  253. public void setStatus(int status) {
  254. this.status = status;
  255. }
  256. public String getOrderchannel() {
  257. return this.orderchannel;
  258. }
  259. public void setOrderchannel(String orderchannel) {
  260. this.orderchannel = orderchannel;
  261. }
  262. public String getCancelchannel() {
  263. return this.cancelchannel;
  264. }
  265. public void setCancelchannel(String cancelchannel) {
  266. this.cancelchannel = cancelchannel;
  267. }
  268. public int getOrderstatus() {
  269. return this.orderstatus;
  270. }
  271. public void setOrderstatus(int orderstatus) {
  272. this.orderstatus = orderstatus;
  273. }
  274. public String getVideoid() {
  275. return this.videoid;
  276. }
  277. public void setVideoid(String videoid) {
  278. this.videoid = videoid;
  279. }
  280. public String getVideoname() {
  281. return this.videoname;
  282. }
  283. public void setVideoname(String videoname) {
  284. this.videoname = videoname;
  285. }
  286. public int getType() {
  287. return this.type;
  288. }
  289. public void setType(int type) {
  290. this.type = type;
  291. }
  292. public String getApptype() {
  293. return this.apptype;
  294. }
  295. public void setApptype(String apptype) {
  296. this.apptype = apptype;
  297. }
  298. public String getProvince() {
  299. return this.province;
  300. }
  301. public void setProvince(String province) {
  302. this.province = province;
  303. }
  304. public String getArea() {
  305. return this.area;
  306. }
  307. public void setArea(String area) {
  308. this.area = area;
  309. }
  310. public int getOrdertype() {
  311. return this.ordertype;
  312. }
  313. public void setOrdertype(int ordertype) {
  314. this.ordertype = ordertype;
  315. }
  316. public int getIsexperience() {
  317. return this.isexperience;
  318. }
  319. public void setIsexperience(int isexperience) {
  320. this.isexperience = isexperience;
  321. }
  322. public String getShowstatus() {
  323. return this.showstatus;
  324. }
  325. public void setShowstatus(String showstatus) {
  326. this.showstatus = showstatus;
  327. }
  328. public String getProductid() {
  329. return this.productid;
  330. }
  331. public void setProductid(String productid) {
  332. this.productid = productid;
  333. }
  334. public String getId() {
  335. return this.id;
  336. }
  337. public void setId(String id) {
  338. this.id = id;
  339. }
  340. }