123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package com.chinacreator.videoalliance.order.bean;
- import com.chinacreator.common.util.RequestUtil;
- public class OrderLog
- {
- private String userid;
- private String cpid;
- private String spid;
- private int orderstatus;
- private String errorcode;
- private String errorinfo;
- private String origin;
- private int status;
- private String channel;
- private String province;
- private String area;
- private int isexperience = 0;
- private String apptype;
- private String ordertype;
- private String useragent;
- private String times;
-
- public String getTimes() {
- return times;
- }
- public void setTimes(String times) {
- this.times = times;
- }
- public String getUserid()
- {
- return this.userid;
- }
- public String getCpid() {
- return this.cpid;
- }
- public String getSpid() {
- return this.spid;
- }
- public int getOrderstatus() {
- return this.orderstatus;
- }
- public String getErrorcode() {
- return this.errorcode;
- }
- public String getErrorinfo() {
- return this.errorinfo;
- }
- public void setUserid(String userid) {
- this.userid = userid;
- }
- public void setCpid(String cpid) {
- this.cpid = cpid;
- }
- public void setSpid(String spid) {
- this.spid = spid;
- }
- public void setOrderstatus(int orderstatus) {
- this.orderstatus = orderstatus;
- }
- public void setErrorcode(String errorcode) {
- this.errorcode = errorcode;
- }
- public void setErrorinfo(String errorinfo) {
- this.errorinfo = errorinfo;
- }
- public String getOrigin() {
- return this.origin;
- }
- public void setOrigin(String origin) {
- this.origin = origin;
- }
- public String getIp() {
- return RequestUtil.getHostIp();
- }
- public int getStatus() {
- return this.status;
- }
- public String getChannel() {
- return this.channel;
- }
- public void setStatus(int status) {
- this.status = status;
- }
- public void setChannel(String channel) {
- this.channel = channel;
- }
- public String getProvince() {
- return this.province;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- public String getArea() {
- return this.area;
- }
- public void setArea(String area) {
- this.area = area;
- }
- public int getIsexperience() {
- return this.isexperience;
- }
- public String getApptype() {
- return this.apptype;
- }
- public String getOrdertype() {
- return this.ordertype;
- }
- public String getUseragent() {
- return this.useragent;
- }
- public void setIsexperience(int isexperience) {
- this.isexperience = isexperience;
- }
- public void setApptype(String apptype) {
- this.apptype = apptype;
- }
- public void setOrdertype(String ordertype) {
- this.ordertype = ordertype;
- }
- public void setUseragent(String useragent) {
- this.useragent = useragent;
- }
- }
|