e475a055bbcfaeaa0720bfffa0f8f4b7e4997dd2.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.chinacreator.videoalliance.order.bean;
  2. import com.chinacreator.common.util.RequestUtil;
  3. public class OrderLog
  4. {
  5. private String userid;
  6. private String cpid;
  7. private String spid;
  8. private int orderstatus;
  9. private String errorcode;
  10. private String errorinfo;
  11. private String origin;
  12. private int status;
  13. private String channel;
  14. private String province;
  15. private String area;
  16. private int isexperience = 0;
  17. private String apptype;
  18. private String ordertype;
  19. private String useragent;
  20. private String times;
  21. public String getTimes() {
  22. return times;
  23. }
  24. public void setTimes(String times) {
  25. this.times = times;
  26. }
  27. public String getUserid()
  28. {
  29. return this.userid;
  30. }
  31. public String getCpid() {
  32. return this.cpid;
  33. }
  34. public String getSpid() {
  35. return this.spid;
  36. }
  37. public int getOrderstatus() {
  38. return this.orderstatus;
  39. }
  40. public String getErrorcode() {
  41. return this.errorcode;
  42. }
  43. public String getErrorinfo() {
  44. return this.errorinfo;
  45. }
  46. public void setUserid(String userid) {
  47. this.userid = userid;
  48. }
  49. public void setCpid(String cpid) {
  50. this.cpid = cpid;
  51. }
  52. public void setSpid(String spid) {
  53. this.spid = spid;
  54. }
  55. public void setOrderstatus(int orderstatus) {
  56. this.orderstatus = orderstatus;
  57. }
  58. public void setErrorcode(String errorcode) {
  59. this.errorcode = errorcode;
  60. }
  61. public void setErrorinfo(String errorinfo) {
  62. this.errorinfo = errorinfo;
  63. }
  64. public String getOrigin() {
  65. return this.origin;
  66. }
  67. public void setOrigin(String origin) {
  68. this.origin = origin;
  69. }
  70. public String getIp() {
  71. return RequestUtil.getHostIp();
  72. }
  73. public int getStatus() {
  74. return this.status;
  75. }
  76. public String getChannel() {
  77. return this.channel;
  78. }
  79. public void setStatus(int status) {
  80. this.status = status;
  81. }
  82. public void setChannel(String channel) {
  83. this.channel = channel;
  84. }
  85. public String getProvince() {
  86. return this.province;
  87. }
  88. public void setProvince(String province) {
  89. this.province = province;
  90. }
  91. public String getArea() {
  92. return this.area;
  93. }
  94. public void setArea(String area) {
  95. this.area = area;
  96. }
  97. public int getIsexperience() {
  98. return this.isexperience;
  99. }
  100. public String getApptype() {
  101. return this.apptype;
  102. }
  103. public String getOrdertype() {
  104. return this.ordertype;
  105. }
  106. public String getUseragent() {
  107. return this.useragent;
  108. }
  109. public void setIsexperience(int isexperience) {
  110. this.isexperience = isexperience;
  111. }
  112. public void setApptype(String apptype) {
  113. this.apptype = apptype;
  114. }
  115. public void setOrdertype(String ordertype) {
  116. this.ordertype = ordertype;
  117. }
  118. public void setUseragent(String useragent) {
  119. this.useragent = useragent;
  120. }
  121. }