123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.chinacreator.videoalliance.order.bean;
- public class ExperienceProductBean {
- private String productid;
- private String channel;
- private String cpid;
- private String appid;
- private String key;
- private String experiencetype;
- private String timeslot;
- private String spid;
- private String orderUrl;
- private String process;
- private int orderNum;
- private int synccode;
- private String canadd;
-
-
- public String getCanadd() {
- return canadd;
- }
- public void setCanadd(String canadd) {
- this.canadd = canadd;
- }
- public int getSynccode() {
- return synccode;
- }
- public void setSynccode(int synccode) {
- this.synccode = synccode;
- }
- public int getOrderNum() {
- return orderNum;
- }
- public void setOrderNum(int orderNum) {
- this.orderNum = orderNum;
- }
- public String getProcess() {
- return process;
- }
- public void setProcess(String process) {
- this.process = process;
- }
- public String getOrderUrl() {
- return orderUrl;
- }
- public void setOrderUrl(String orderUrl) {
- this.orderUrl = orderUrl;
- }
- public String getProductid() {
- return productid;
- }
- public void setProductid(String productid) {
- this.productid = productid;
- }
- public String getChannel() {
- return channel;
- }
- public void setChannel(String channel) {
- this.channel = channel;
- }
- public String getCpid() {
- return cpid;
- }
- public void setCpid(String cpid) {
- this.cpid = cpid;
- }
- public String getAppid() {
- return appid;
- }
- public void setAppid(String appid) {
- this.appid = appid;
- }
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
-
- public String getExperiencetype() {
- return experiencetype;
- }
- public void setExperiencetype(String experiencetype) {
- this.experiencetype = experiencetype;
- }
- public String getTimeslot() {
- return timeslot;
- }
- public void setTimeslot(String timeslot) {
- this.timeslot = timeslot;
- }
- public String getSpid() {
- return spid;
- }
- public void setSpid(String spid) {
- this.spid = spid;
- }
-
-
- }
|