1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.chinacreator.videoalliance.order.bean;
- public class SchoolChannelSp {
- private String cpid;
-
- private String productid;
-
- private String spid;
-
- private String channelcode;
-
- private String key;
-
- private String appid;
-
- private String process;
-
- private String ifurl;
-
- public String getProcess() {
- return process;
- }
- public void setProcess(String process) {
- this.process = process;
- }
- public String getIfurl() {
- return ifurl;
- }
- public void setIfurl(String ifurl) {
- this.ifurl = ifurl;
- }
- 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 getCpid() {
- return cpid;
- }
- public void setCpid(String cpid) {
- this.cpid = cpid;
- }
- public String getProductid() {
- return productid;
- }
- public void setProductid(String productid) {
- this.productid = productid;
- }
- public String getSpid() {
- return spid;
- }
- public void setSpid(String spid) {
- this.spid = spid;
- }
-
- public String getChannelcode() {
- return channelcode;
- }
- public void setChannelcode(String channelcode) {
- this.channelcode = channelcode;
- }
- }
|