123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package com.chinacreator.videoalliance.order.bean;
- public class SPInfo
- {
- private String spid;
- private String cpid;
- private String spname;
- private String price;
- private String vacproductid;
- private String spcode;
- private int type;
- private int feetype;
- private int cancancelorder;
- private int canorder;
- private int errorhandle;
- private String duration;
- private String canaccumulation;
- private String mutex;
- private String relationSp;
- private int paytype;
- private String spcodename;
- private String needUnifiedAuthSync;
- private String haslocal;
- //产品标识,1前向,2后向,3前向合约,4后向合约
- private String directype;
- public String getDirectype() {
- return directype;
- }
- public void setDirectype(String directype) {
- this.directype = directype;
- }
- public String getHaslocal() {
- return haslocal;
- }
- public void setHaslocal(String haslocal) {
- this.haslocal = haslocal;
- }
- public String getSpcodename() {
- return spcodename;
- }
- public void setSpcodename(String spcodename) {
- this.spcodename = spcodename;
- }
- public String getNeedUnifiedAuthSync() {
- return needUnifiedAuthSync;
- }
- public void setNeedUnifiedAuthSync(String needUnifiedAuthSync) {
- this.needUnifiedAuthSync = needUnifiedAuthSync;
- }
- public int getPaytype() {
- return paytype;
- }
- public void setPaytype(int paytype) {
- this.paytype = paytype;
- }
- public String getMutex()
- {
- return this.mutex;
- }
- public void setMutex(String mutex) {
- this.mutex = mutex;
- }
- public String getRelationSp() {
- return this.relationSp;
- }
- public void setRelationSp(String relationSp) {
- this.relationSp = relationSp;
- }
- public String getCanaccumulation() {
- return this.canaccumulation;
- }
- public void setCanaccumulation(String canaccumulation) {
- this.canaccumulation = canaccumulation;
- }
- public String getDuration() {
- return this.duration;
- }
- public void setDuration(String duration) {
- this.duration = duration;
- }
- public int getErrorhandle() {
- return this.errorhandle;
- }
- public void setErrorhandle(int errorhandle) {
- this.errorhandle = errorhandle;
- }
- public String getSpid() {
- return this.spid;
- }
- public void setSpid(String spid) {
- this.spid = spid;
- }
- public String getCpid() {
- return this.cpid;
- }
- public void setCpid(String cpid) {
- this.cpid = cpid;
- }
- public String getSpname() {
- return this.spname;
- }
- public void setSpname(String spname) {
- this.spname = spname;
- }
- public String getPrice() {
- return this.price;
- }
- public void setPrice(String price) {
- this.price = price;
- }
- public String getVacproductid() {
- return this.vacproductid;
- }
- public void setVacproductid(String vacproductid) {
- this.vacproductid = vacproductid;
- }
- public String getSpcode() {
- return this.spcode;
- }
- public void setSpcode(String spcode) {
- this.spcode = spcode;
- }
- public int getType() {
- return this.type;
- }
- public void setType(int type) {
- this.type = type;
- }
- public int getFeetype() {
- return this.feetype;
- }
- public void setFeetype(int feetype) {
- this.feetype = feetype;
- }
- public int getCancancelorder() {
- return this.cancancelorder;
- }
- public void setCancancelorder(int cancancelorder) {
- this.cancancelorder = cancancelorder;
- }
- public int getCanorder() {
- return this.canorder;
- }
- public void setCanorder(int canorder) {
- this.canorder = canorder;
- }
- }
|