diff --git a/aliyun-java-sdk-brinekingdom/ChangeLog.txt b/aliyun-java-sdk-brinekingdom/ChangeLog.txt index 5baae55b20..03b22c634d 100644 --- a/aliyun-java-sdk-brinekingdom/ChangeLog.txt +++ b/aliyun-java-sdk-brinekingdom/ChangeLog.txt @@ -1,3 +1,6 @@ +2024-12-24 Version: 1.0.8 +- Generated 2019-06-27 for `brinekingdom`. + 2021-08-13 Version: 1.0.7 - Add Exchange interface. diff --git a/aliyun-java-sdk-brinekingdom/pom.xml b/aliyun-java-sdk-brinekingdom/pom.xml index 2e7c7dc02c..17a1f0dfbf 100644 --- a/aliyun-java-sdk-brinekingdom/pom.xml +++ b/aliyun-java-sdk-brinekingdom/pom.xml @@ -4,7 +4,7 @@ com.aliyun aliyun-java-sdk-brinekingdom jar - 1.0.7 + 1.0.8 aliyun-java-sdk-brinekingdom http://www.aliyun.com Aliyun Open API SDK for Java @@ -37,9 +37,8 @@ http://www.aliyun.com - - - + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/Endpoint.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/Endpoint.java deleted file mode 100644 index 3461457714..0000000000 --- a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/Endpoint.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.brinekingdom; - -import java.util.HashMap; - -public class Endpoint { - public static HashMap endpointMap = new HashMap() { - { - put("cn-shenzhen", "brinekingdom.aliyuncs.com"); - put("cn-beijing", "brinekingdom.aliyuncs.com"); - put("ap-south-1", "brinekingdom.aliyuncs.com"); - put("eu-west-1", "brinekingdom.aliyuncs.com"); - put("ap-northeast-1", "brinekingdom.aliyuncs.com"); - put("cn-shenzhen-finance-1", "brinekingdom.aliyuncs.com"); - put("me-east-1", "brinekingdom.aliyuncs.com"); - put("cn-chengdu", "brinekingdom.aliyuncs.com"); - put("cn-north-2-gov-1", "brinekingdom.aliyuncs.com"); - put("cn-qingdao", "brinekingdom.aliyuncs.com"); - put("cn-shanghai", "brinekingdom.aliyuncs.com"); - put("cn-shanghai-finance-1", "brinekingdom.aliyuncs.com"); - put("cn-hongkong", "brinekingdom.aliyuncs.com"); - put("cn-hangzhou-finance", "brinekingdom.aliyuncs.com"); - put("ap-southeast-1", "brinekingdom.aliyuncs.com"); - put("ap-southeast-2", "brinekingdom.aliyuncs.com"); - put("ap-southeast-3", "brinekingdom.aliyuncs.com"); - put("eu-central-1", "brinekingdom.aliyuncs.com"); - put("cn-huhehaote", "brinekingdom.aliyuncs.com"); - put("ap-southeast-5", "brinekingdom.aliyuncs.com"); - put("us-east-1", "brinekingdom.aliyuncs.com"); - put("cn-zhangjiakou", "brinekingdom.aliyuncs.com"); - put("us-west-1", "brinekingdom.aliyuncs.com"); - put("cn-hangzhou", "brinekingdom.aliyuncs.com"); - } - }; - - public static String endpointRegionalType = "regional"; -} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CheckReceiveRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CheckReceiveRequest.java new file mode 100644 index 0000000000..3b17b26fb6 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CheckReceiveRequest.java @@ -0,0 +1,991 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import java.util.Map; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class CheckReceiveRequest extends RpcAcsRequest { + + + @SerializedName("demandRequestList") + private List demandRequestList; + public CheckReceiveRequest() { + super("brinekingdom", "2019-06-27", "CheckReceive"); + setMethod(MethodType.POST); + } + + public List getDemandRequestList() { + return this.demandRequestList; + } + + public void setDemandRequestList(List demandRequestList) { + this.demandRequestList = demandRequestList; + if (demandRequestList != null) { + putQueryParameter("DemandRequestList" , new Gson().toJson(demandRequestList)); + } + } + + public static class DemandRequestList { + + @SerializedName("Cluster") + private String cluster; + + @SerializedName("RackInfo") + private List rackInfo; + + @SerializedName("SafeZone") + private String safeZone; + + @SerializedName("ChangeCnt") + private Integer changeCnt; + + @SerializedName("ExpectTurnOverDateStr") + private String expectTurnOverDateStr; + + @SerializedName("ProjectCode") + private String projectCode; + + @SerializedName("Source") + private String source; + + @SerializedName("SupplyLevel") + private String supplyLevel; + + @SerializedName("Operator") + private String operator; + + @SerializedName("BusinessType") + private String businessType; + + @SerializedName("ProductType") + private String productType; + + @SerializedName("Product3") + private String product3; + + @SerializedName("Features") + private Map features; + + @SerializedName("FactoryInstall") + private Boolean factoryInstall; + + @SerializedName("ShiftMethod") + private String shiftMethod; + + @SerializedName("DemandDeploy") + private DemandDeploy demandDeploy; + + @SerializedName("AssetReceiverNick") + private String assetReceiverNick; + + @SerializedName("Azone") + private String azone; + + @SerializedName("OsName") + private String osName; + + @SerializedName("ProjectTypeName") + private String projectTypeName; + + @SerializedName("Item") + private String item; + + @SerializedName("ProjectName") + private String projectName; + + @SerializedName("Idc") + private String idc; + + @SerializedName("AssetReceiver") + private String assetReceiver; + + @SerializedName("Priority") + private String priority; + + @SerializedName("SupplyCnt") + private Integer supplyCnt; + + @SerializedName("RequireType") + private String requireType; + + @SerializedName("Install") + private Boolean install; + + @SerializedName("ModelLoad") + private Integer modelLoad; + + @SerializedName("Region") + private String region; + + @SerializedName("AscriptionClassName") + private String ascriptionClassName; + + @SerializedName("OsId") + private Long osId; + + @SerializedName("InstallId") + private Long installId; + + @SerializedName("Uid") + private String uid; + + @SerializedName("Scenario") + private String scenario; + + @SerializedName("DemandQty") + private Integer demandQty; + + @SerializedName("TenantId") + private String tenantId; + + @SerializedName("ClassZone") + private String classZone; + + @SerializedName("AscriptionClass") + private String ascriptionClass; + + @SerializedName("ProjectType") + private String projectType; + + @SerializedName("NetworkArch") + private String networkArch; + + @SerializedName("SourceId") + private String sourceId; + + @SerializedName("Comments") + private String comments; + + @SerializedName("Org") + private String org; + + @SerializedName("MoveCnt") + private Integer moveCnt; + + @SerializedName("InstallName") + private String installName; + + @SerializedName("DemandItem") + private DemandItem demandItem; + + @SerializedName("DeployProduct3") + private String deployProduct3; + + @SerializedName("BenefitOld") + private Integer benefitOld; + + @SerializedName("DemandClass") + private String demandClass; + + @SerializedName("ItemType") + private String itemType; + + @SerializedName("AppGroup") + private String appGroup; + + @SerializedName("LogicZone") + private String logicZone; + + @SerializedName("ConsistentDemandId") + private Long consistentDemandId; + + @SerializedName("ReplenishUnit") + private String replenishUnit; + + public String getCluster() { + return this.cluster; + } + + public void setCluster(String cluster) { + this.cluster = cluster; + } + + public List getRackInfo() { + return this.rackInfo; + } + + public void setRackInfo(List rackInfo) { + this.rackInfo = rackInfo; + } + + public String getSafeZone() { + return this.safeZone; + } + + public void setSafeZone(String safeZone) { + this.safeZone = safeZone; + } + + public Integer getChangeCnt() { + return this.changeCnt; + } + + public void setChangeCnt(Integer changeCnt) { + this.changeCnt = changeCnt; + } + + public String getExpectTurnOverDateStr() { + return this.expectTurnOverDateStr; + } + + public void setExpectTurnOverDateStr(String expectTurnOverDateStr) { + this.expectTurnOverDateStr = expectTurnOverDateStr; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getSupplyLevel() { + return this.supplyLevel; + } + + public void setSupplyLevel(String supplyLevel) { + this.supplyLevel = supplyLevel; + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + } + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + } + + public String getProductType() { + return this.productType; + } + + public void setProductType(String productType) { + this.productType = productType; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Map getFeatures() { + return this.features; + } + + public void setFeatures(Map features) { + this.features = features; + } + + public Boolean getFactoryInstall() { + return this.factoryInstall; + } + + public void setFactoryInstall(Boolean factoryInstall) { + this.factoryInstall = factoryInstall; + } + + public String getShiftMethod() { + return this.shiftMethod; + } + + public void setShiftMethod(String shiftMethod) { + this.shiftMethod = shiftMethod; + } + + public DemandDeploy getDemandDeploy() { + return this.demandDeploy; + } + + public void setDemandDeploy(DemandDeploy demandDeploy) { + this.demandDeploy = demandDeploy; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Integer getSupplyCnt() { + return this.supplyCnt; + } + + public void setSupplyCnt(Integer supplyCnt) { + this.supplyCnt = supplyCnt; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public Boolean getInstall() { + return this.install; + } + + public void setInstall(Boolean install) { + this.install = install; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getAscriptionClassName() { + return this.ascriptionClassName; + } + + public void setAscriptionClassName(String ascriptionClassName) { + this.ascriptionClassName = ascriptionClassName; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public String getUid() { + return this.uid; + } + + public void setUid(String uid) { + this.uid = uid; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public Integer getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Integer demandQty) { + this.demandQty = demandQty; + } + + public String getTenantId() { + return this.tenantId; + } + + public void setTenantId(String tenantId) { + this.tenantId = tenantId; + } + + public String getClassZone() { + return this.classZone; + } + + public void setClassZone(String classZone) { + this.classZone = classZone; + } + + public String getAscriptionClass() { + return this.ascriptionClass; + } + + public void setAscriptionClass(String ascriptionClass) { + this.ascriptionClass = ascriptionClass; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getNetworkArch() { + return this.networkArch; + } + + public void setNetworkArch(String networkArch) { + this.networkArch = networkArch; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public String getComments() { + return this.comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public Integer getMoveCnt() { + return this.moveCnt; + } + + public void setMoveCnt(Integer moveCnt) { + this.moveCnt = moveCnt; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public DemandItem getDemandItem() { + return this.demandItem; + } + + public void setDemandItem(DemandItem demandItem) { + this.demandItem = demandItem; + } + + public String getDeployProduct3() { + return this.deployProduct3; + } + + public void setDeployProduct3(String deployProduct3) { + this.deployProduct3 = deployProduct3; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getDemandClass() { + return this.demandClass; + } + + public void setDemandClass(String demandClass) { + this.demandClass = demandClass; + } + + public String getItemType() { + return this.itemType; + } + + public void setItemType(String itemType) { + this.itemType = itemType; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public String getLogicZone() { + return this.logicZone; + } + + public void setLogicZone(String logicZone) { + this.logicZone = logicZone; + } + + public Long getConsistentDemandId() { + return this.consistentDemandId; + } + + public void setConsistentDemandId(Long consistentDemandId) { + this.consistentDemandId = consistentDemandId; + } + + public String getReplenishUnit() { + return this.replenishUnit; + } + + public void setReplenishUnit(String replenishUnit) { + this.replenishUnit = replenishUnit; + } + + public static class DemandDeploy { + + @SerializedName("DeployRole") + private String deployRole; + + @SerializedName("NodeType") + private String nodeType; + + @SerializedName("DeployLevel") + private String deployLevel; + + @SerializedName("DeployLocation") + private String deployLocation; + + @SerializedName("FrameworkClass") + private String frameworkClass; + + public String getDeployRole() { + return this.deployRole; + } + + public void setDeployRole(String deployRole) { + this.deployRole = deployRole; + } + + public String getNodeType() { + return this.nodeType; + } + + public void setNodeType(String nodeType) { + this.nodeType = nodeType; + } + + public String getDeployLevel() { + return this.deployLevel; + } + + public void setDeployLevel(String deployLevel) { + this.deployLevel = deployLevel; + } + + public String getDeployLocation() { + return this.deployLocation; + } + + public void setDeployLocation(String deployLocation) { + this.deployLocation = deployLocation; + } + + public String getFrameworkClass() { + return this.frameworkClass; + } + + public void setFrameworkClass(String frameworkClass) { + this.frameworkClass = frameworkClass; + } + } + + public static class DemandItem { + + @SerializedName("ServerDTO") + private ServerDTO serverDTO; + + @SerializedName("ExchangeValue") + private ExchangeValue exchangeValue; + + @SerializedName("DemandItemType") + private String demandItemType; + + @SerializedName("ComboValue") + private ComboValue comboValue; + + public ServerDTO getServerDTO() { + return this.serverDTO; + } + + public void setServerDTO(ServerDTO serverDTO) { + this.serverDTO = serverDTO; + } + + public ExchangeValue getExchangeValue() { + return this.exchangeValue; + } + + public void setExchangeValue(ExchangeValue exchangeValue) { + this.exchangeValue = exchangeValue; + } + + public String getDemandItemType() { + return this.demandItemType; + } + + public void setDemandItemType(String demandItemType) { + this.demandItemType = demandItemType; + } + + public ComboValue getComboValue() { + return this.comboValue; + } + + public void setComboValue(ComboValue comboValue) { + this.comboValue = comboValue; + } + + public static class ServerDTO { + + @SerializedName("Nic") + private String nic; + + @SerializedName("Model") + private String model; + + @SerializedName("Config") + private String config; + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getConfig() { + return this.config; + } + + public void setConfig(String config) { + this.config = config; + } + } + + public static class ExchangeValue { + + @SerializedName("ExchangeList") + private List exchangeList; + + @SerializedName("ServerDemandList") + private List serverDemandList; + + public List getExchangeList() { + return this.exchangeList; + } + + public void setExchangeList(List exchangeList) { + this.exchangeList = exchangeList; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public static class ServerDemandListItem { + + @SerializedName("Item") + private String item; + + @SerializedName("Quantity") + private Integer quantity; + + @SerializedName("AppGroup") + private String appGroup; + + @SerializedName("AgreedQuantity") + private Integer agreedQuantity; + + @SerializedName("SnList") + private List snList; + + @SerializedName("Product3") + private String product3; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + } + } + + public static class ComboValue { + + @SerializedName("SkuId") + private String skuId; + + @SerializedName("ServerDemandList") + private List serverDemandList; + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public static class ServerDemandListItem { + + @SerializedName("Item") + private String item; + + @SerializedName("Quantity") + private Integer quantity; + + @SerializedName("AppGroup") + private String appGroup; + + @SerializedName("AgreedQuantity") + private Integer agreedQuantity; + + @SerializedName("SnList") + private List snList; + + @SerializedName("Product3") + private String product3; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + } + } + } + } + + @Override + public Class getResponseClass() { + return CheckReceiveResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CheckReceiveResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CheckReceiveResponse.java new file mode 100644 index 0000000000..1c41bddc98 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CheckReceiveResponse.java @@ -0,0 +1,130 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.CheckReceiveResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CheckReceiveResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private String requestId; + + private List result; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ConsistentDemandResponseList { + + private Long consistentDemandId; + + private String errorMsg; + + private String source; + + private String sourceId; + + private Boolean success; + + public Long getConsistentDemandId() { + return this.consistentDemandId; + } + + public void setConsistentDemandId(Long consistentDemandId) { + this.consistentDemandId = consistentDemandId; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + } + + @Override + public CheckReceiveResponse getInstance(UnmarshallerContext context) { + return CheckReceiveResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CreateLxProjectRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CreateLxProjectRequest.java new file mode 100644 index 0000000000..a1b15cfa7c --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CreateLxProjectRequest.java @@ -0,0 +1,434 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.ProtocolType; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class CreateLxProjectRequest extends RpcAcsRequest { + + + private String area; + + private String demanderId; + + private String scProjectNo; + + private String sourceNumber; + + private String remark; + + private Long isStanderProcess; + + private String projectSource; + + private String userId; + + @SerializedName("lxWiringDetail") + private List lxWiringDetail; + + @SerializedName("siteCode") + private List siteCode; + + private String deliveryTime; + + private String sourceSystemUrl; + + private String constructionTeam; + + private String initWiringUrl; + + private String sourceType; + + private String cancelProjectUrl; + + private String wiringDoneNotifyUrl; + + private String systemSource; + public CreateLxProjectRequest() { + super("brinekingdom", "2019-06-27", "CreateLxProject"); + setProtocol(ProtocolType.HTTPS); + setMethod(MethodType.POST); + } + + public String getArea() { + return this.area; + } + + public void setArea(String area) { + this.area = area; + if(area != null){ + putQueryParameter("Area", area); + } + } + + public String getDemanderId() { + return this.demanderId; + } + + public void setDemanderId(String demanderId) { + this.demanderId = demanderId; + if(demanderId != null){ + putQueryParameter("DemanderId", demanderId); + } + } + + public String getScProjectNo() { + return this.scProjectNo; + } + + public void setScProjectNo(String scProjectNo) { + this.scProjectNo = scProjectNo; + if(scProjectNo != null){ + putQueryParameter("ScProjectNo", scProjectNo); + } + } + + public String getSourceNumber() { + return this.sourceNumber; + } + + public void setSourceNumber(String sourceNumber) { + this.sourceNumber = sourceNumber; + if(sourceNumber != null){ + putQueryParameter("SourceNumber", sourceNumber); + } + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + if(remark != null){ + putQueryParameter("Remark", remark); + } + } + + public Long getIsStanderProcess() { + return this.isStanderProcess; + } + + public void setIsStanderProcess(Long isStanderProcess) { + this.isStanderProcess = isStanderProcess; + if(isStanderProcess != null){ + putQueryParameter("IsStanderProcess", isStanderProcess.toString()); + } + } + + public String getProjectSource() { + return this.projectSource; + } + + public void setProjectSource(String projectSource) { + this.projectSource = projectSource; + if(projectSource != null){ + putQueryParameter("ProjectSource", projectSource); + } + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + if(userId != null){ + putQueryParameter("UserId", userId); + } + } + + public List getLxWiringDetail() { + return this.lxWiringDetail; + } + + public void setLxWiringDetail(List lxWiringDetail) { + this.lxWiringDetail = lxWiringDetail; + if (lxWiringDetail != null) { + putQueryParameter("LxWiringDetail" , new Gson().toJson(lxWiringDetail)); + } + } + + public List getSiteCode() { + return this.siteCode; + } + + public void setSiteCode(List siteCode) { + this.siteCode = siteCode; + if (siteCode != null) { + putQueryParameter("SiteCode" , new Gson().toJson(siteCode)); + } + } + + public String getDeliveryTime() { + return this.deliveryTime; + } + + public void setDeliveryTime(String deliveryTime) { + this.deliveryTime = deliveryTime; + if(deliveryTime != null){ + putQueryParameter("DeliveryTime", deliveryTime); + } + } + + public String getSourceSystemUrl() { + return this.sourceSystemUrl; + } + + public void setSourceSystemUrl(String sourceSystemUrl) { + this.sourceSystemUrl = sourceSystemUrl; + if(sourceSystemUrl != null){ + putQueryParameter("SourceSystemUrl", sourceSystemUrl); + } + } + + public String getConstructionTeam() { + return this.constructionTeam; + } + + public void setConstructionTeam(String constructionTeam) { + this.constructionTeam = constructionTeam; + if(constructionTeam != null){ + putQueryParameter("ConstructionTeam", constructionTeam); + } + } + + public String getInitWiringUrl() { + return this.initWiringUrl; + } + + public void setInitWiringUrl(String initWiringUrl) { + this.initWiringUrl = initWiringUrl; + if(initWiringUrl != null){ + putQueryParameter("InitWiringUrl", initWiringUrl); + } + } + + public String getSourceType() { + return this.sourceType; + } + + public void setSourceType(String sourceType) { + this.sourceType = sourceType; + if(sourceType != null){ + putQueryParameter("SourceType", sourceType); + } + } + + public String getCancelProjectUrl() { + return this.cancelProjectUrl; + } + + public void setCancelProjectUrl(String cancelProjectUrl) { + this.cancelProjectUrl = cancelProjectUrl; + if(cancelProjectUrl != null){ + putQueryParameter("CancelProjectUrl", cancelProjectUrl); + } + } + + public String getWiringDoneNotifyUrl() { + return this.wiringDoneNotifyUrl; + } + + public void setWiringDoneNotifyUrl(String wiringDoneNotifyUrl) { + this.wiringDoneNotifyUrl = wiringDoneNotifyUrl; + if(wiringDoneNotifyUrl != null){ + putQueryParameter("WiringDoneNotifyUrl", wiringDoneNotifyUrl); + } + } + + public String getSystemSource() { + return this.systemSource; + } + + public void setSystemSource(String systemSource) { + this.systemSource = systemSource; + if(systemSource != null){ + putQueryParameter("SystemSource", systemSource); + } + } + + public static class LxWiringDetail { + + @SerializedName("CableDetails") + private String cableDetails; + + @SerializedName("InterfaceType") + private String interfaceType; + + @SerializedName("AName") + private String aName; + + @SerializedName("APort") + private String aPort; + + @SerializedName("APosition") + private String aPosition; + + @SerializedName("BPosition") + private String bPosition; + + @SerializedName("Operator") + private String operator; + + @SerializedName("SiteCode") + private String siteCode; + + @SerializedName("ProjectNo") + private String projectNo; + + @SerializedName("BName") + private String bName; + + @SerializedName("BPort") + private String bPort; + + @SerializedName("LengthDistance") + private Long lengthDistance; + + @SerializedName("BSn") + private String bSn; + + @SerializedName("ASn") + private String aSn; + + public String getCableDetails() { + return this.cableDetails; + } + + public void setCableDetails(String cableDetails) { + this.cableDetails = cableDetails; + } + + public String getInterfaceType() { + return this.interfaceType; + } + + public void setInterfaceType(String interfaceType) { + this.interfaceType = interfaceType; + } + + public String getAName() { + return this.aName; + } + + public void setAName(String aName) { + this.aName = aName; + } + + public String getAPort() { + return this.aPort; + } + + public void setAPort(String aPort) { + this.aPort = aPort; + } + + public String getAPosition() { + return this.aPosition; + } + + public void setAPosition(String aPosition) { + this.aPosition = aPosition; + } + + public String getBPosition() { + return this.bPosition; + } + + public void setBPosition(String bPosition) { + this.bPosition = bPosition; + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + } + + public String getSiteCode() { + return this.siteCode; + } + + public void setSiteCode(String siteCode) { + this.siteCode = siteCode; + } + + public String getProjectNo() { + return this.projectNo; + } + + public void setProjectNo(String projectNo) { + this.projectNo = projectNo; + } + + public String getBName() { + return this.bName; + } + + public void setBName(String bName) { + this.bName = bName; + } + + public String getBPort() { + return this.bPort; + } + + public void setBPort(String bPort) { + this.bPort = bPort; + } + + public Long getLengthDistance() { + return this.lengthDistance; + } + + public void setLengthDistance(Long lengthDistance) { + this.lengthDistance = lengthDistance; + } + + public String getBSn() { + return this.bSn; + } + + public void setBSn(String bSn) { + this.bSn = bSn; + } + + public String getASn() { + return this.aSn; + } + + public void setASn(String aSn) { + this.aSn = aSn; + } + } + + @Override + public Class getResponseClass() { + return CreateLxProjectResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CreateLxProjectResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CreateLxProjectResponse.java new file mode 100644 index 0000000000..d8a0fb2d43 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/CreateLxProjectResponse.java @@ -0,0 +1,220 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.CreateLxProjectResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CreateLxProjectResponse extends AcsResponse { + + private Boolean success; + + private String errorCode; + + private String msg; + + private Long totalItems; + + private List data; + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getErrorCode() { + return this.errorCode; + } + + public void setErrorCode(String errorCode) { + this.errorCode = errorCode; + } + + public String getMsg() { + return this.msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public Long getTotalItems() { + return this.totalItems; + } + + public void setTotalItems(Long totalItems) { + this.totalItems = totalItems; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class DataItem { + + private String constructionTeam; + + private String sourceNumber; + + private Long projectId; + + private String projectNo; + + private String user; + + private String remark; + + private String projectSource; + + private String extInfo; + + private String systemSource; + + private Integer isStanderProcess; + + private String cancelProjectUrl; + + private String sourceSystemUrl; + + private String initWiringUrl; + + public String getConstructionTeam() { + return this.constructionTeam; + } + + public void setConstructionTeam(String constructionTeam) { + this.constructionTeam = constructionTeam; + } + + public String getSourceNumber() { + return this.sourceNumber; + } + + public void setSourceNumber(String sourceNumber) { + this.sourceNumber = sourceNumber; + } + + public Long getProjectId() { + return this.projectId; + } + + public void setProjectId(Long projectId) { + this.projectId = projectId; + } + + public String getProjectNo() { + return this.projectNo; + } + + public void setProjectNo(String projectNo) { + this.projectNo = projectNo; + } + + public String getUser() { + return this.user; + } + + public void setUser(String user) { + this.user = user; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getProjectSource() { + return this.projectSource; + } + + public void setProjectSource(String projectSource) { + this.projectSource = projectSource; + } + + public String getExtInfo() { + return this.extInfo; + } + + public void setExtInfo(String extInfo) { + this.extInfo = extInfo; + } + + public String getSystemSource() { + return this.systemSource; + } + + public void setSystemSource(String systemSource) { + this.systemSource = systemSource; + } + + public Integer getIsStanderProcess() { + return this.isStanderProcess; + } + + public void setIsStanderProcess(Integer isStanderProcess) { + this.isStanderProcess = isStanderProcess; + } + + public String getCancelProjectUrl() { + return this.cancelProjectUrl; + } + + public void setCancelProjectUrl(String cancelProjectUrl) { + this.cancelProjectUrl = cancelProjectUrl; + } + + public String getSourceSystemUrl() { + return this.sourceSystemUrl; + } + + public void setSourceSystemUrl(String sourceSystemUrl) { + this.sourceSystemUrl = sourceSystemUrl; + } + + public String getInitWiringUrl() { + return this.initWiringUrl; + } + + public void setInitWiringUrl(String initWiringUrl) { + this.initWiringUrl = initWiringUrl; + } + } + + @Override + public CreateLxProjectResponse getInstance(UnmarshallerContext context) { + return CreateLxProjectResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteConsistentDemandRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteConsistentDemandRequest.java new file mode 100644 index 0000000000..56f82a87b6 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteConsistentDemandRequest.java @@ -0,0 +1,62 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class DeleteConsistentDemandRequest extends RpcAcsRequest { + + + private Long demandId; + + private String operator; + public DeleteConsistentDemandRequest() { + super("brinekingdom", "2019-06-27", "DeleteConsistentDemand"); + setMethod(MethodType.POST); + } + + public Long getDemandId() { + return this.demandId; + } + + public void setDemandId(Long demandId) { + this.demandId = demandId; + if(demandId != null){ + putQueryParameter("DemandId", demandId.toString()); + } + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + if(operator != null){ + putQueryParameter("Operator", operator); + } + } + + @Override + public Class getResponseClass() { + return DeleteConsistentDemandResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteConsistentDemandResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteConsistentDemandResponse.java new file mode 100644 index 0000000000..94ace7a8e9 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteConsistentDemandResponse.java @@ -0,0 +1,76 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.DeleteConsistentDemandResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class DeleteConsistentDemandResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private Long result; + + private String requestId; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Long getResult() { + return this.result; + } + + public void setResult(Long result) { + this.result = result; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public DeleteConsistentDemandResponse getInstance(UnmarshallerContext context) { + return DeleteConsistentDemandResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteDemandReverseByIdRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteDemandReverseByIdRequest.java new file mode 100644 index 0000000000..a0c51837de --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteDemandReverseByIdRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class DeleteDemandReverseByIdRequest extends RpcAcsRequest { + + + private Long param0; + public DeleteDemandReverseByIdRequest() { + super("brinekingdom", "2019-06-27", "DeleteDemandReverseById"); + setMethod(MethodType.POST); + } + + public Long getParam0() { + return this.param0; + } + + public void setParam0(Long param0) { + this.param0 = param0; + if(param0 != null){ + putQueryParameter("Param0", param0.toString()); + } + } + + @Override + public Class getResponseClass() { + return DeleteDemandReverseByIdResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteDemandReverseByIdResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteDemandReverseByIdResponse.java new file mode 100644 index 0000000000..50b3f8457e --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/DeleteDemandReverseByIdResponse.java @@ -0,0 +1,96 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.DeleteDemandReverseByIdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class DeleteDemandReverseByIdResponse extends AcsResponse { + + private String traceId; + + private String errorMessage; + + private String resultCode; + + private Boolean success; + + private Boolean result; + + private String requestId; + + public String getTraceId() { + return this.traceId; + } + + public void setTraceId(String traceId) { + this.traceId = traceId; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Boolean getResult() { + return this.result; + } + + public void setResult(Boolean result) { + this.result = result; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public DeleteDemandReverseByIdResponse getInstance(UnmarshallerContext context) { + return DeleteDemandReverseByIdResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetAllPrimaryProdRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetAllPrimaryProdRequest.java new file mode 100644 index 0000000000..7df30ab689 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetAllPrimaryProdRequest.java @@ -0,0 +1,36 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetAllPrimaryProdRequest extends RpcAcsRequest { + + public GetAllPrimaryProdRequest() { + super("brinekingdom", "2019-06-27", "GetAllPrimaryProd"); + setMethod(MethodType.POST); + } + + @Override + public Class getResponseClass() { + return GetAllPrimaryProdResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetAllPrimaryProdResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetAllPrimaryProdResponse.java new file mode 100644 index 0000000000..d81d9c57f0 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetAllPrimaryProdResponse.java @@ -0,0 +1,200 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetAllPrimaryProdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetAllPrimaryProdResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String aoneId; + + private String aoneName; + + private String _class; + + private String productClass; + + private String productClassCN; + + private String productCode; + + private String productEnName; + + private String productLineCN; + + private String productLineEN; + + private String productName; + + public String getAoneId() { + return this.aoneId; + } + + public void setAoneId(String aoneId) { + this.aoneId = aoneId; + } + + public String getAoneName() { + return this.aoneName; + } + + public void setAoneName(String aoneName) { + this.aoneName = aoneName; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getProductClass() { + return this.productClass; + } + + public void setProductClass(String productClass) { + this.productClass = productClass; + } + + public String getProductClassCN() { + return this.productClassCN; + } + + public void setProductClassCN(String productClassCN) { + this.productClassCN = productClassCN; + } + + public String getProductCode() { + return this.productCode; + } + + public void setProductCode(String productCode) { + this.productCode = productCode; + } + + public String getProductEnName() { + return this.productEnName; + } + + public void setProductEnName(String productEnName) { + this.productEnName = productEnName; + } + + public String getProductLineCN() { + return this.productLineCN; + } + + public void setProductLineCN(String productLineCN) { + this.productLineCN = productLineCN; + } + + public String getProductLineEN() { + return this.productLineEN; + } + + public void setProductLineEN(String productLineEN) { + this.productLineEN = productLineEN; + } + + public String getProductName() { + return this.productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + } + + @Override + public GetAllPrimaryProdResponse getInstance(UnmarshallerContext context) { + return GetAllPrimaryProdResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetConsistentDemandListRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetConsistentDemandListRequest.java new file mode 100644 index 0000000000..480193b049 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetConsistentDemandListRequest.java @@ -0,0 +1,53 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetConsistentDemandListRequest extends RpcAcsRequest { + + + @SerializedName("param0") + private List param0; + public GetConsistentDemandListRequest() { + super("brinekingdom", "2019-06-27", "GetConsistentDemandList"); + setMethod(MethodType.POST); + } + + public List getParam0() { + return this.param0; + } + + public void setParam0(List param0) { + this.param0 = param0; + if (param0 != null) { + putQueryParameter("Param0" , new Gson().toJson(param0)); + } + } + + @Override + public Class getResponseClass() { + return GetConsistentDemandListResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetConsistentDemandListResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetConsistentDemandListResponse.java new file mode 100644 index 0000000000..4b1bfb9608 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetConsistentDemandListResponse.java @@ -0,0 +1,2252 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import java.util.Map; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetConsistentDemandListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetConsistentDemandListResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private String requestId; + + private List result; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String ascriptionClassName; + + private String deployProduct2Name; + + private String itemType; + + private Integer matchCnt; + + private String orgName; + + private String businessMode; + + private String brandName; + + private String item; + + private Boolean factoryInstall; + + private String requireType; + + private Integer modelLoad; + + private Integer serverAssignCnt; + + private Long osId; + + private Integer ladingProcessQty; + + private String projectTypeName; + + private String status; + + private String cbmOwner; + + private String productType; + + private String product3Name; + + private String scenario; + + private String networkArch; + + private String uid; + + private Long gmtCreate; + + private String scPlanIds; + + private Integer supplyQty; + + private Long id; + + private String assetReceiverNick; + + private Integer useCapacityCnt; + + private String product3; + + private String product1; + + private String projectName; + + private String product2; + + private String sourceId; + + private String product1Name; + + private Integer moveExecuteQty; + + private Integer useL2PoolCnt; + + private String ascriptionClass; + + private String expectTurnOverDateStr; + + private String deployProduct1; + + private String deployProduct3; + + private String deployProduct2; + + private Integer moveQty; + + private String logicZone; + + private String supplyArea; + + private String manufacturingBrandCode; + + private Boolean executeFlag; + + private String demandClass; + + private Integer moveDeliveredQty; + + private String tenantId; + + private String deployProduct3Name; + + private String model; + + private String otherMsg; + + private String tag; + + private Boolean autoExecute; + + private Integer demandQty; + + private String businessType; + + private String idc; + + private String brandCode; + + private String creator; + + private Long brandId; + + private String installName; + + private String evaluateStatus; + + private String fcstOccupyStatus; + + private String capacityResponseStatus; + + private Boolean ablePurchaseLading; + + private Long manufacturingBrandId; + + private String safeYear; + + private String moveOrders; + + private String supplyLevel; + + private String requireTypeName; + + private String configModel; + + private String updater; + + private Long expectTurnOverDate; + + private String moveReason; + + private String supplyType; + + private String deployProduct1Name; + + private Boolean install; + + private Boolean whiteOrder; + + private Integer useSupplyCnt; + + private String azone; + + private Integer purchaseCnt; + + private String shiftMethod; + + private Integer benefitOld; + + private String industryLine; + + private String purchaseOrders; + + private String fcstId; + + private String priority; + + private Integer usePlanCnt; + + private Integer rackAssignCnt; + + private String assignVersion; + + private String featureStr; + + private Boolean flag; + + private String executeError; + + private String assetReceiver; + + private Integer usePoolInPlaceCnt; + + private String sectionRackStatus; + + private String projectType; + + private Boolean hasSolution; + + private String region; + + private Integer useFcst; + + private String creatorName; + + private String operator; + + private Boolean btoFlag; + + private String classZone; + + private String org; + + private String manualBrandName; + + private Long gmtModified; + + private String classZoneName; + + private String sectionDetail; + + private String replenishUnit; + + private String source; + + private String product2Name; + + private Integer executeQty; + + private Integer supplyDeliveredQty; + + private Map features; + + private String projectCode; + + private Long installId; + + private Integer sectionRackAssignCnt; + + private Integer usePoolMoveCnt; + + private String appGroup; + + private String updaterName; + + private String comments; + + private Integer usePoolCnt; + + private String osName; + + private String error; + + private String nic; + + private String cluster; + + private String businessTypeName; + + private String processId; + + private String safeZone; + + private Integer toConfirmCnt; + + private List rackInfo; + + private DemandDeploy demandDeploy; + + private DemandItem demandItem; + + public String getAscriptionClassName() { + return this.ascriptionClassName; + } + + public void setAscriptionClassName(String ascriptionClassName) { + this.ascriptionClassName = ascriptionClassName; + } + + public String getDeployProduct2Name() { + return this.deployProduct2Name; + } + + public void setDeployProduct2Name(String deployProduct2Name) { + this.deployProduct2Name = deployProduct2Name; + } + + public String getItemType() { + return this.itemType; + } + + public void setItemType(String itemType) { + this.itemType = itemType; + } + + public Integer getMatchCnt() { + return this.matchCnt; + } + + public void setMatchCnt(Integer matchCnt) { + this.matchCnt = matchCnt; + } + + public String getOrgName() { + return this.orgName; + } + + public void setOrgName(String orgName) { + this.orgName = orgName; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public String getBrandName() { + return this.brandName; + } + + public void setBrandName(String brandName) { + this.brandName = brandName; + } + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Boolean getFactoryInstall() { + return this.factoryInstall; + } + + public void setFactoryInstall(Boolean factoryInstall) { + this.factoryInstall = factoryInstall; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public Integer getServerAssignCnt() { + return this.serverAssignCnt; + } + + public void setServerAssignCnt(Integer serverAssignCnt) { + this.serverAssignCnt = serverAssignCnt; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public Integer getLadingProcessQty() { + return this.ladingProcessQty; + } + + public void setLadingProcessQty(Integer ladingProcessQty) { + this.ladingProcessQty = ladingProcessQty; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public String getStatus() { + return this.status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCbmOwner() { + return this.cbmOwner; + } + + public void setCbmOwner(String cbmOwner) { + this.cbmOwner = cbmOwner; + } + + public String getProductType() { + return this.productType; + } + + public void setProductType(String productType) { + this.productType = productType; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public String getNetworkArch() { + return this.networkArch; + } + + public void setNetworkArch(String networkArch) { + this.networkArch = networkArch; + } + + public String getUid() { + return this.uid; + } + + public void setUid(String uid) { + this.uid = uid; + } + + public Long getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(Long gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getScPlanIds() { + return this.scPlanIds; + } + + public void setScPlanIds(String scPlanIds) { + this.scPlanIds = scPlanIds; + } + + public Integer getSupplyQty() { + return this.supplyQty; + } + + public void setSupplyQty(Integer supplyQty) { + this.supplyQty = supplyQty; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public Integer getUseCapacityCnt() { + return this.useCapacityCnt; + } + + public void setUseCapacityCnt(Integer useCapacityCnt) { + this.useCapacityCnt = useCapacityCnt; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public Integer getMoveExecuteQty() { + return this.moveExecuteQty; + } + + public void setMoveExecuteQty(Integer moveExecuteQty) { + this.moveExecuteQty = moveExecuteQty; + } + + public Integer getUseL2PoolCnt() { + return this.useL2PoolCnt; + } + + public void setUseL2PoolCnt(Integer useL2PoolCnt) { + this.useL2PoolCnt = useL2PoolCnt; + } + + public String getAscriptionClass() { + return this.ascriptionClass; + } + + public void setAscriptionClass(String ascriptionClass) { + this.ascriptionClass = ascriptionClass; + } + + public String getExpectTurnOverDateStr() { + return this.expectTurnOverDateStr; + } + + public void setExpectTurnOverDateStr(String expectTurnOverDateStr) { + this.expectTurnOverDateStr = expectTurnOverDateStr; + } + + public String getDeployProduct1() { + return this.deployProduct1; + } + + public void setDeployProduct1(String deployProduct1) { + this.deployProduct1 = deployProduct1; + } + + public String getDeployProduct3() { + return this.deployProduct3; + } + + public void setDeployProduct3(String deployProduct3) { + this.deployProduct3 = deployProduct3; + } + + public String getDeployProduct2() { + return this.deployProduct2; + } + + public void setDeployProduct2(String deployProduct2) { + this.deployProduct2 = deployProduct2; + } + + public Integer getMoveQty() { + return this.moveQty; + } + + public void setMoveQty(Integer moveQty) { + this.moveQty = moveQty; + } + + public String getLogicZone() { + return this.logicZone; + } + + public void setLogicZone(String logicZone) { + this.logicZone = logicZone; + } + + public String getSupplyArea() { + return this.supplyArea; + } + + public void setSupplyArea(String supplyArea) { + this.supplyArea = supplyArea; + } + + public String getManufacturingBrandCode() { + return this.manufacturingBrandCode; + } + + public void setManufacturingBrandCode(String manufacturingBrandCode) { + this.manufacturingBrandCode = manufacturingBrandCode; + } + + public Boolean getExecuteFlag() { + return this.executeFlag; + } + + public void setExecuteFlag(Boolean executeFlag) { + this.executeFlag = executeFlag; + } + + public String getDemandClass() { + return this.demandClass; + } + + public void setDemandClass(String demandClass) { + this.demandClass = demandClass; + } + + public Integer getMoveDeliveredQty() { + return this.moveDeliveredQty; + } + + public void setMoveDeliveredQty(Integer moveDeliveredQty) { + this.moveDeliveredQty = moveDeliveredQty; + } + + public String getTenantId() { + return this.tenantId; + } + + public void setTenantId(String tenantId) { + this.tenantId = tenantId; + } + + public String getDeployProduct3Name() { + return this.deployProduct3Name; + } + + public void setDeployProduct3Name(String deployProduct3Name) { + this.deployProduct3Name = deployProduct3Name; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getOtherMsg() { + return this.otherMsg; + } + + public void setOtherMsg(String otherMsg) { + this.otherMsg = otherMsg; + } + + public String getTag() { + return this.tag; + } + + public void setTag(String tag) { + this.tag = tag; + } + + public Boolean getAutoExecute() { + return this.autoExecute; + } + + public void setAutoExecute(Boolean autoExecute) { + this.autoExecute = autoExecute; + } + + public Integer getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Integer demandQty) { + this.demandQty = demandQty; + } + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + + public String getBrandCode() { + return this.brandCode; + } + + public void setBrandCode(String brandCode) { + this.brandCode = brandCode; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public Long getBrandId() { + return this.brandId; + } + + public void setBrandId(Long brandId) { + this.brandId = brandId; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public String getEvaluateStatus() { + return this.evaluateStatus; + } + + public void setEvaluateStatus(String evaluateStatus) { + this.evaluateStatus = evaluateStatus; + } + + public String getFcstOccupyStatus() { + return this.fcstOccupyStatus; + } + + public void setFcstOccupyStatus(String fcstOccupyStatus) { + this.fcstOccupyStatus = fcstOccupyStatus; + } + + public String getCapacityResponseStatus() { + return this.capacityResponseStatus; + } + + public void setCapacityResponseStatus(String capacityResponseStatus) { + this.capacityResponseStatus = capacityResponseStatus; + } + + public Boolean getAblePurchaseLading() { + return this.ablePurchaseLading; + } + + public void setAblePurchaseLading(Boolean ablePurchaseLading) { + this.ablePurchaseLading = ablePurchaseLading; + } + + public Long getManufacturingBrandId() { + return this.manufacturingBrandId; + } + + public void setManufacturingBrandId(Long manufacturingBrandId) { + this.manufacturingBrandId = manufacturingBrandId; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getMoveOrders() { + return this.moveOrders; + } + + public void setMoveOrders(String moveOrders) { + this.moveOrders = moveOrders; + } + + public String getSupplyLevel() { + return this.supplyLevel; + } + + public void setSupplyLevel(String supplyLevel) { + this.supplyLevel = supplyLevel; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getConfigModel() { + return this.configModel; + } + + public void setConfigModel(String configModel) { + this.configModel = configModel; + } + + public String getUpdater() { + return this.updater; + } + + public void setUpdater(String updater) { + this.updater = updater; + } + + public Long getExpectTurnOverDate() { + return this.expectTurnOverDate; + } + + public void setExpectTurnOverDate(Long expectTurnOverDate) { + this.expectTurnOverDate = expectTurnOverDate; + } + + public String getMoveReason() { + return this.moveReason; + } + + public void setMoveReason(String moveReason) { + this.moveReason = moveReason; + } + + public String getSupplyType() { + return this.supplyType; + } + + public void setSupplyType(String supplyType) { + this.supplyType = supplyType; + } + + public String getDeployProduct1Name() { + return this.deployProduct1Name; + } + + public void setDeployProduct1Name(String deployProduct1Name) { + this.deployProduct1Name = deployProduct1Name; + } + + public Boolean getInstall() { + return this.install; + } + + public void setInstall(Boolean install) { + this.install = install; + } + + public Boolean getWhiteOrder() { + return this.whiteOrder; + } + + public void setWhiteOrder(Boolean whiteOrder) { + this.whiteOrder = whiteOrder; + } + + public Integer getUseSupplyCnt() { + return this.useSupplyCnt; + } + + public void setUseSupplyCnt(Integer useSupplyCnt) { + this.useSupplyCnt = useSupplyCnt; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public Integer getPurchaseCnt() { + return this.purchaseCnt; + } + + public void setPurchaseCnt(Integer purchaseCnt) { + this.purchaseCnt = purchaseCnt; + } + + public String getShiftMethod() { + return this.shiftMethod; + } + + public void setShiftMethod(String shiftMethod) { + this.shiftMethod = shiftMethod; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getIndustryLine() { + return this.industryLine; + } + + public void setIndustryLine(String industryLine) { + this.industryLine = industryLine; + } + + public String getPurchaseOrders() { + return this.purchaseOrders; + } + + public void setPurchaseOrders(String purchaseOrders) { + this.purchaseOrders = purchaseOrders; + } + + public String getFcstId() { + return this.fcstId; + } + + public void setFcstId(String fcstId) { + this.fcstId = fcstId; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Integer getUsePlanCnt() { + return this.usePlanCnt; + } + + public void setUsePlanCnt(Integer usePlanCnt) { + this.usePlanCnt = usePlanCnt; + } + + public Integer getRackAssignCnt() { + return this.rackAssignCnt; + } + + public void setRackAssignCnt(Integer rackAssignCnt) { + this.rackAssignCnt = rackAssignCnt; + } + + public String getAssignVersion() { + return this.assignVersion; + } + + public void setAssignVersion(String assignVersion) { + this.assignVersion = assignVersion; + } + + public String getFeatureStr() { + return this.featureStr; + } + + public void setFeatureStr(String featureStr) { + this.featureStr = featureStr; + } + + public Boolean getFlag() { + return this.flag; + } + + public void setFlag(Boolean flag) { + this.flag = flag; + } + + public String getExecuteError() { + return this.executeError; + } + + public void setExecuteError(String executeError) { + this.executeError = executeError; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public Integer getUsePoolInPlaceCnt() { + return this.usePoolInPlaceCnt; + } + + public void setUsePoolInPlaceCnt(Integer usePoolInPlaceCnt) { + this.usePoolInPlaceCnt = usePoolInPlaceCnt; + } + + public String getSectionRackStatus() { + return this.sectionRackStatus; + } + + public void setSectionRackStatus(String sectionRackStatus) { + this.sectionRackStatus = sectionRackStatus; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public Boolean getHasSolution() { + return this.hasSolution; + } + + public void setHasSolution(Boolean hasSolution) { + this.hasSolution = hasSolution; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public Integer getUseFcst() { + return this.useFcst; + } + + public void setUseFcst(Integer useFcst) { + this.useFcst = useFcst; + } + + public String getCreatorName() { + return this.creatorName; + } + + public void setCreatorName(String creatorName) { + this.creatorName = creatorName; + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + } + + public Boolean getBtoFlag() { + return this.btoFlag; + } + + public void setBtoFlag(Boolean btoFlag) { + this.btoFlag = btoFlag; + } + + public String getClassZone() { + return this.classZone; + } + + public void setClassZone(String classZone) { + this.classZone = classZone; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public String getManualBrandName() { + return this.manualBrandName; + } + + public void setManualBrandName(String manualBrandName) { + this.manualBrandName = manualBrandName; + } + + public Long getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(Long gmtModified) { + this.gmtModified = gmtModified; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public String getSectionDetail() { + return this.sectionDetail; + } + + public void setSectionDetail(String sectionDetail) { + this.sectionDetail = sectionDetail; + } + + public String getReplenishUnit() { + return this.replenishUnit; + } + + public void setReplenishUnit(String replenishUnit) { + this.replenishUnit = replenishUnit; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public Integer getExecuteQty() { + return this.executeQty; + } + + public void setExecuteQty(Integer executeQty) { + this.executeQty = executeQty; + } + + public Integer getSupplyDeliveredQty() { + return this.supplyDeliveredQty; + } + + public void setSupplyDeliveredQty(Integer supplyDeliveredQty) { + this.supplyDeliveredQty = supplyDeliveredQty; + } + + public Map getFeatures() { + return this.features; + } + + public void setFeatures(Map features) { + this.features = features; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public Integer getSectionRackAssignCnt() { + return this.sectionRackAssignCnt; + } + + public void setSectionRackAssignCnt(Integer sectionRackAssignCnt) { + this.sectionRackAssignCnt = sectionRackAssignCnt; + } + + public Integer getUsePoolMoveCnt() { + return this.usePoolMoveCnt; + } + + public void setUsePoolMoveCnt(Integer usePoolMoveCnt) { + this.usePoolMoveCnt = usePoolMoveCnt; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public String getUpdaterName() { + return this.updaterName; + } + + public void setUpdaterName(String updaterName) { + this.updaterName = updaterName; + } + + public String getComments() { + return this.comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public Integer getUsePoolCnt() { + return this.usePoolCnt; + } + + public void setUsePoolCnt(Integer usePoolCnt) { + this.usePoolCnt = usePoolCnt; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getError() { + return this.error; + } + + public void setError(String error) { + this.error = error; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getCluster() { + return this.cluster; + } + + public void setCluster(String cluster) { + this.cluster = cluster; + } + + public String getBusinessTypeName() { + return this.businessTypeName; + } + + public void setBusinessTypeName(String businessTypeName) { + this.businessTypeName = businessTypeName; + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + } + + public String getSafeZone() { + return this.safeZone; + } + + public void setSafeZone(String safeZone) { + this.safeZone = safeZone; + } + + public Integer getToConfirmCnt() { + return this.toConfirmCnt; + } + + public void setToConfirmCnt(Integer toConfirmCnt) { + this.toConfirmCnt = toConfirmCnt; + } + + public List getRackInfo() { + return this.rackInfo; + } + + public void setRackInfo(List rackInfo) { + this.rackInfo = rackInfo; + } + + public DemandDeploy getDemandDeploy() { + return this.demandDeploy; + } + + public void setDemandDeploy(DemandDeploy demandDeploy) { + this.demandDeploy = demandDeploy; + } + + public DemandItem getDemandItem() { + return this.demandItem; + } + + public void setDemandItem(DemandItem demandItem) { + this.demandItem = demandItem; + } + + public static class DemandDeploy { + + private String netArch; + + private String frameworkClass; + + private String deployMode; + + private String deployLocation; + + private String deployArch; + + private String nodeType; + + private String deployLevel; + + private String boxModel; + + private String publicNetWorkExport; + + private String boxUpLink; + + private String deployRole; + + private String boxDownLink; + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public String getFrameworkClass() { + return this.frameworkClass; + } + + public void setFrameworkClass(String frameworkClass) { + this.frameworkClass = frameworkClass; + } + + public String getDeployMode() { + return this.deployMode; + } + + public void setDeployMode(String deployMode) { + this.deployMode = deployMode; + } + + public String getDeployLocation() { + return this.deployLocation; + } + + public void setDeployLocation(String deployLocation) { + this.deployLocation = deployLocation; + } + + public String getDeployArch() { + return this.deployArch; + } + + public void setDeployArch(String deployArch) { + this.deployArch = deployArch; + } + + public String getNodeType() { + return this.nodeType; + } + + public void setNodeType(String nodeType) { + this.nodeType = nodeType; + } + + public String getDeployLevel() { + return this.deployLevel; + } + + public void setDeployLevel(String deployLevel) { + this.deployLevel = deployLevel; + } + + public String getBoxModel() { + return this.boxModel; + } + + public void setBoxModel(String boxModel) { + this.boxModel = boxModel; + } + + public String getPublicNetWorkExport() { + return this.publicNetWorkExport; + } + + public void setPublicNetWorkExport(String publicNetWorkExport) { + this.publicNetWorkExport = publicNetWorkExport; + } + + public String getBoxUpLink() { + return this.boxUpLink; + } + + public void setBoxUpLink(String boxUpLink) { + this.boxUpLink = boxUpLink; + } + + public String getDeployRole() { + return this.deployRole; + } + + public void setDeployRole(String deployRole) { + this.deployRole = deployRole; + } + + public String getBoxDownLink() { + return this.boxDownLink; + } + + public void setBoxDownLink(String boxDownLink) { + this.boxDownLink = boxDownLink; + } + } + + public static class DemandItem { + + private String demandItemType; + + private ServerDTO serverDTO; + + private NetPackValue netPackValue; + + private PubNetAccessValue pubNetAccessValue; + + private ServiceValue serviceValue; + + private ComboValue comboValue; + + private RackValue rackValue; + + private ExchangeValue exchangeValue; + + public String getDemandItemType() { + return this.demandItemType; + } + + public void setDemandItemType(String demandItemType) { + this.demandItemType = demandItemType; + } + + public ServerDTO getServerDTO() { + return this.serverDTO; + } + + public void setServerDTO(ServerDTO serverDTO) { + this.serverDTO = serverDTO; + } + + public NetPackValue getNetPackValue() { + return this.netPackValue; + } + + public void setNetPackValue(NetPackValue netPackValue) { + this.netPackValue = netPackValue; + } + + public PubNetAccessValue getPubNetAccessValue() { + return this.pubNetAccessValue; + } + + public void setPubNetAccessValue(PubNetAccessValue pubNetAccessValue) { + this.pubNetAccessValue = pubNetAccessValue; + } + + public ServiceValue getServiceValue() { + return this.serviceValue; + } + + public void setServiceValue(ServiceValue serviceValue) { + this.serviceValue = serviceValue; + } + + public ComboValue getComboValue() { + return this.comboValue; + } + + public void setComboValue(ComboValue comboValue) { + this.comboValue = comboValue; + } + + public RackValue getRackValue() { + return this.rackValue; + } + + public void setRackValue(RackValue rackValue) { + this.rackValue = rackValue; + } + + public ExchangeValue getExchangeValue() { + return this.exchangeValue; + } + + public void setExchangeValue(ExchangeValue exchangeValue) { + this.exchangeValue = exchangeValue; + } + + public static class ServerDTO { + + private String config; + + private String model; + + private String nic; + + public String getConfig() { + return this.config; + } + + public void setConfig(String config) { + this.config = config; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + } + + public static class NetPackValue { + + private List itemList; + + public List getItemList() { + return this.itemList; + } + + public void setItemList(List itemList) { + this.itemList = itemList; + } + + public static class ItemListItem { + + private String role; + + private Long demandQty; + + private String resourceType; + + private String framework; + + private String remark; + + public String getRole() { + return this.role; + } + + public void setRole(String role) { + this.role = role; + } + + public Long getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Long demandQty) { + this.demandQty = demandQty; + } + + public String getResourceType() { + return this.resourceType; + } + + public void setResourceType(String resourceType) { + this.resourceType = resourceType; + } + + public String getFramework() { + return this.framework; + } + + public void setFramework(String framework) { + this.framework = framework; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + } + } + + public static class PubNetAccessValue { + + private List itemList1; + + public List getItemList1() { + return this.itemList1; + } + + public void setItemList1(List itemList1) { + this.itemList1 = itemList1; + } + + public static class ItemListItem2 { + + private String price; + + private Float bandwidth; + + private String accessType; + + public String getPrice() { + return this.price; + } + + public void setPrice(String price) { + this.price = price; + } + + public Float getBandwidth() { + return this.bandwidth; + } + + public void setBandwidth(Float bandwidth) { + this.bandwidth = bandwidth; + } + + public String getAccessType() { + return this.accessType; + } + + public void setAccessType(String accessType) { + this.accessType = accessType; + } + } + } + + public static class ServiceValue { + + private List itemList3; + + public List getItemList3() { + return this.itemList3; + } + + public void setItemList3(List itemList3) { + this.itemList3 = itemList3; + } + + public static class ItemListItem4 { + + private String serviceTypeName; + + private String area; + + private Float year; + + private String serviceType; + + private Integer amount; + + private String idc; + + private String serviceItemName; + + private String city; + + private String serviceItem; + + private String remark; + + public String getServiceTypeName() { + return this.serviceTypeName; + } + + public void setServiceTypeName(String serviceTypeName) { + this.serviceTypeName = serviceTypeName; + } + + public String getArea() { + return this.area; + } + + public void setArea(String area) { + this.area = area; + } + + public Float getYear() { + return this.year; + } + + public void setYear(Float year) { + this.year = year; + } + + public String getServiceType() { + return this.serviceType; + } + + public void setServiceType(String serviceType) { + this.serviceType = serviceType; + } + + public Integer getAmount() { + return this.amount; + } + + public void setAmount(Integer amount) { + this.amount = amount; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + + public String getServiceItemName() { + return this.serviceItemName; + } + + public void setServiceItemName(String serviceItemName) { + this.serviceItemName = serviceItemName; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getServiceItem() { + return this.serviceItem; + } + + public void setServiceItem(String serviceItem) { + this.serviceItem = serviceItem; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + } + } + + public static class ComboValue { + + private String skuId; + + private List serverDemandList; + + private List wholeRackList; + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public List getWholeRackList() { + return this.wholeRackList; + } + + public void setWholeRackList(List wholeRackList) { + this.wholeRackList = wholeRackList; + } + + public static class ServerDemandListItem { + + private String item; + + private String product3; + + private Integer agreedQuantity; + + private Integer quantity; + + private String skuId; + + private String appGroup; + + private List snList; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + } + + public static class WholeRackListItem { + + private String order; + + private String rackPackage; + + private List serverDemandList5; + + public String getOrder() { + return this.order; + } + + public void setOrder(String order) { + this.order = order; + } + + public String getRackPackage() { + return this.rackPackage; + } + + public void setRackPackage(String rackPackage) { + this.rackPackage = rackPackage; + } + + public List getServerDemandList5() { + return this.serverDemandList5; + } + + public void setServerDemandList5(List serverDemandList5) { + this.serverDemandList5 = serverDemandList5; + } + + public static class ServerDemandListItem6 { + + private String item; + + private String product3; + + private Integer agreedQuantity; + + private Integer quantity; + + private String skuId; + + private String appGroup; + + private List snList7; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public List getSnList7() { + return this.snList7; + } + + public void setSnList7(List snList7) { + this.snList7 = snList7; + } + } + } + } + + public static class RackValue { + + private List itemList8; + + public List getItemList8() { + return this.itemList8; + } + + public void setItemList8(List itemList8) { + this.itemList8 = itemList8; + } + + public static class ItemListItem9 { + + private Integer rackNum; + + private String roomCode; + + private String power; + + private Float powUtilizationRate; + + public Integer getRackNum() { + return this.rackNum; + } + + public void setRackNum(Integer rackNum) { + this.rackNum = rackNum; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getPower() { + return this.power; + } + + public void setPower(String power) { + this.power = power; + } + + public Float getPowUtilizationRate() { + return this.powUtilizationRate; + } + + public void setPowUtilizationRate(Float powUtilizationRate) { + this.powUtilizationRate = powUtilizationRate; + } + } + } + + public static class ExchangeValue { + + private List serverDemandList10; + + private List exchangeList; + + public List getServerDemandList10() { + return this.serverDemandList10; + } + + public void setServerDemandList10(List serverDemandList10) { + this.serverDemandList10 = serverDemandList10; + } + + public List getExchangeList() { + return this.exchangeList; + } + + public void setExchangeList(List exchangeList) { + this.exchangeList = exchangeList; + } + + public static class ServerDemandListItem11 { + + private String item; + + private String product3; + + private Integer agreedQuantity; + + private Integer quantity; + + private String skuId; + + private String appGroup; + + private List snList12; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public List getSnList12() { + return this.snList12; + } + + public void setSnList12(List snList12) { + this.snList12 = snList12; + } + } + } + } + } + + @Override + public GetConsistentDemandListResponse getInstance(UnmarshallerContext context) { + return GetConsistentDemandListResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListModelRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListModelRequest.java new file mode 100644 index 0000000000..cde92547ee --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListModelRequest.java @@ -0,0 +1,62 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetListModelRequest extends RpcAcsRequest { + + + private String modelType; + + private String keyword; + public GetListModelRequest() { + super("brinekingdom", "2019-06-27", "GetListModel"); + setMethod(MethodType.POST); + } + + public String getModelType() { + return this.modelType; + } + + public void setModelType(String modelType) { + this.modelType = modelType; + if(modelType != null){ + putQueryParameter("ModelType", modelType); + } + } + + public String getKeyword() { + return this.keyword; + } + + public void setKeyword(String keyword) { + this.keyword = keyword; + if(keyword != null){ + putQueryParameter("Keyword", keyword); + } + } + + @Override + public Class getResponseClass() { + return GetListModelResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListModelResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListModelResponse.java new file mode 100644 index 0000000000..a60785fbeb --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListModelResponse.java @@ -0,0 +1,120 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetListModelResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetListModelResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String key; + + private String value; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + + @Override + public GetListModelResponse getInstance(UnmarshallerContext context) { + return GetListModelResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListNetBandRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListNetBandRequest.java new file mode 100644 index 0000000000..cdde1ea71e --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListNetBandRequest.java @@ -0,0 +1,62 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetListNetBandRequest extends RpcAcsRequest { + + + private String resourceType; + + private String productType; + public GetListNetBandRequest() { + super("brinekingdom", "2019-06-27", "GetListNetBand"); + setMethod(MethodType.POST); + } + + public String getResourceType() { + return this.resourceType; + } + + public void setResourceType(String resourceType) { + this.resourceType = resourceType; + if(resourceType != null){ + putQueryParameter("ResourceType", resourceType); + } + } + + public String getProductType() { + return this.productType; + } + + public void setProductType(String productType) { + this.productType = productType; + if(productType != null){ + putQueryParameter("ProductType", productType); + } + } + + @Override + public Class getResponseClass() { + return GetListNetBandResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListNetBandResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListNetBandResponse.java new file mode 100644 index 0000000000..89a24ee143 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetListNetBandResponse.java @@ -0,0 +1,130 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetListNetBandResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetListNetBandResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String _class; + + private String key; + + private String value; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + + @Override + public GetListNetBandResponse getInstance(UnmarshallerContext context) { + return GetListNetBandResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetOrganizationByQueryRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetOrganizationByQueryRequest.java new file mode 100644 index 0000000000..a302d6a4f5 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetOrganizationByQueryRequest.java @@ -0,0 +1,179 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetOrganizationByQueryRequest extends RpcAcsRequest { + + + private String division; + + private String requireType; + + private String orgName; + + private Integer offset; + + private String product2; + + private Integer pageSize; + + private String product1; + + private Integer currentPage; + + private Long id; + + private String businessType; + + private String order; + public GetOrganizationByQueryRequest() { + super("brinekingdom", "2019-06-27", "GetOrganizationByQuery"); + setMethod(MethodType.POST); + } + + public String getDivision() { + return this.division; + } + + public void setDivision(String division) { + this.division = division; + if(division != null){ + putQueryParameter("Division", division); + } + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + if(requireType != null){ + putQueryParameter("RequireType", requireType); + } + } + + public String getOrgName() { + return this.orgName; + } + + public void setOrgName(String orgName) { + this.orgName = orgName; + if(orgName != null){ + putQueryParameter("OrgName", orgName); + } + } + + public Integer getOffset() { + return this.offset; + } + + public void setOffset(Integer offset) { + this.offset = offset; + if(offset != null){ + putQueryParameter("Offset", offset.toString()); + } + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + if(product2 != null){ + putQueryParameter("Product2", product2); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + if(product1 != null){ + putQueryParameter("Product1", product1); + } + } + + public Integer getCurrentPage() { + return this.currentPage; + } + + public void setCurrentPage(Integer currentPage) { + this.currentPage = currentPage; + if(currentPage != null){ + putQueryParameter("CurrentPage", currentPage.toString()); + } + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + if(id != null){ + putQueryParameter("Id", id.toString()); + } + } + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + if(businessType != null){ + putQueryParameter("BusinessType", businessType); + } + } + + public String getOrder() { + return this.order; + } + + public void setOrder(String order) { + this.order = order; + if(order != null){ + putQueryParameter("Order", order); + } + } + + @Override + public Class getResponseClass() { + return GetOrganizationByQueryResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetOrganizationByQueryResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetOrganizationByQueryResponse.java new file mode 100644 index 0000000000..30649331dc --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetOrganizationByQueryResponse.java @@ -0,0 +1,250 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetOrganizationByQueryResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetOrganizationByQueryResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class Data { + + private String businessType; + + private String businessTypeName; + + private String _class; + + private String division; + + private Long gmtCreate; + + private Long gmtModified; + + private Long id; + + private String orgName; + + private String orgRemark; + + private String product1; + + private String product1Name; + + private String product2; + + private String product2Name; + + private String requireType; + + private String requireTypeName; + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + } + + public String getBusinessTypeName() { + return this.businessTypeName; + } + + public void setBusinessTypeName(String businessTypeName) { + this.businessTypeName = businessTypeName; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getDivision() { + return this.division; + } + + public void setDivision(String division) { + this.division = division; + } + + public Long getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(Long gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public Long getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(Long gmtModified) { + this.gmtModified = gmtModified; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getOrgName() { + return this.orgName; + } + + public void setOrgName(String orgName) { + this.orgName = orgName; + } + + public String getOrgRemark() { + return this.orgRemark; + } + + public void setOrgRemark(String orgRemark) { + this.orgRemark = orgRemark; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + } + + @Override + public GetOrganizationByQueryResponse getInstance(UnmarshallerContext context) { + return GetOrganizationByQueryResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanByIdRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanByIdRequest.java new file mode 100644 index 0000000000..8628d3ec94 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanByIdRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetPlanByIdRequest extends RpcAcsRequest { + + + private Long id; + public GetPlanByIdRequest() { + super("brinekingdom", "2019-06-27", "GetPlanById"); + setMethod(MethodType.POST); + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + if(id != null){ + putQueryParameter("Id", id.toString()); + } + } + + @Override + public Class getResponseClass() { + return GetPlanByIdResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanByIdResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanByIdResponse.java new file mode 100644 index 0000000000..5af523f8cc --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanByIdResponse.java @@ -0,0 +1,1159 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetPlanByIdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetPlanByIdResponse extends AcsResponse { + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private Result result; + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Result getResult() { + return this.result; + } + + public void setResult(Result result) { + this.result = result; + } + + public static class Result { + + private String agreement; + + private Integer allocateAmount; + + private Long appGroupId; + + private String appGroupName; + + private Long applyType; + + private String assetReceiver; + + private String assetReceiverNick; + + private Long autoLading; + + private String azone; + + private Integer benefitOld; + + private String business; + + private String businessEnName; + + private String businessMode; + + private String businessModeName; + + private String businessName; + + private String cbmDemander; + + private String changeMsg; + + private Long changeSuccess; + + private String _class; + + private String classZoneCode; + + private String classZoneName; + + private String cloudDeployProduct1; + + private String cloudDeployProduct1Name; + + private String cloudDeployProduct2; + + private String cloudDeployProduct2Name; + + private String cloudDeployProduct3; + + private String cloudDeployProduct3Name; + + private String cmC; + + private String cmP; + + private String cmU; + + private String cmV; + + private Long cnt; + + private String cntString; + + private String comment; + + private String country; + + private Long createTime; + + private String creator; + + private String creatorNic; + + private Integer deliveryAmount; + + private Integer effectStatus; + + private Long expireDate; + + private Long id; + + private Long install; + + private Long installId; + + private String installName; + + private Integer ladingQuantity; + + private Long ladingStatus; + + private Integer lineNumber; + + private String logicZoneCode; + + private String logicZoneName; + + private String machineType; + + private Long manufacturerBrand; + + private String manufacturerBrandName; + + private Long modelLoad; + + private String modelLoadString; + + private Boolean modify; + + private String msg; + + private Long nakedDelivery; + + private String nakedDeliveryName; + + private String netArch; + + private String nic; + + private Integer oldCnt; + + private Long orderId; + + private String orgKey; + + private Long originId; + + private Long osId; + + private String osName; + + private String outId; + + private Integer pickAmount; + + private Long pickOrderId; + + private Long planType; + + private String priority; + + private String processId; + + private String product1; + + private String product1Name; + + private String product2; + + private String product2Name; + + private String product3; + + private String product3EnName; + + private String product3Name; + + private String projectCode; + + private String projectName; + + private String projectType; + + private String projectTypeName; + + private Long quotaPlanId; + + private String region; + + private String reportId; + + private String requireType; + + private String requireTypeName; + + private String roomCode; + + private String safeYear; + + private String safeZoneCode; + + private String safeZoneName; + + private String scenario; + + private String source; + + private Long status; + + private String statusName; + + private String subordinateIndustryLine; + + private String subordinateIndustryLineName; + + private Long success; + + private Long time; + + private Long timeSpan; + + private String timeString; + + private Long updateTime; + + private String updater; + + private String updaterNic; + + private Long version; + + public String getAgreement() { + return this.agreement; + } + + public void setAgreement(String agreement) { + this.agreement = agreement; + } + + public Integer getAllocateAmount() { + return this.allocateAmount; + } + + public void setAllocateAmount(Integer allocateAmount) { + this.allocateAmount = allocateAmount; + } + + public Long getAppGroupId() { + return this.appGroupId; + } + + public void setAppGroupId(Long appGroupId) { + this.appGroupId = appGroupId; + } + + public String getAppGroupName() { + return this.appGroupName; + } + + public void setAppGroupName(String appGroupName) { + this.appGroupName = appGroupName; + } + + public Long getApplyType() { + return this.applyType; + } + + public void setApplyType(Long applyType) { + this.applyType = applyType; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public Long getAutoLading() { + return this.autoLading; + } + + public void setAutoLading(Long autoLading) { + this.autoLading = autoLading; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + } + + public String getBusinessEnName() { + return this.businessEnName; + } + + public void setBusinessEnName(String businessEnName) { + this.businessEnName = businessEnName; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public String getBusinessModeName() { + return this.businessModeName; + } + + public void setBusinessModeName(String businessModeName) { + this.businessModeName = businessModeName; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public String getCbmDemander() { + return this.cbmDemander; + } + + public void setCbmDemander(String cbmDemander) { + this.cbmDemander = cbmDemander; + } + + public String getChangeMsg() { + return this.changeMsg; + } + + public void setChangeMsg(String changeMsg) { + this.changeMsg = changeMsg; + } + + public Long getChangeSuccess() { + return this.changeSuccess; + } + + public void setChangeSuccess(Long changeSuccess) { + this.changeSuccess = changeSuccess; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public String getCloudDeployProduct1() { + return this.cloudDeployProduct1; + } + + public void setCloudDeployProduct1(String cloudDeployProduct1) { + this.cloudDeployProduct1 = cloudDeployProduct1; + } + + public String getCloudDeployProduct1Name() { + return this.cloudDeployProduct1Name; + } + + public void setCloudDeployProduct1Name(String cloudDeployProduct1Name) { + this.cloudDeployProduct1Name = cloudDeployProduct1Name; + } + + public String getCloudDeployProduct2() { + return this.cloudDeployProduct2; + } + + public void setCloudDeployProduct2(String cloudDeployProduct2) { + this.cloudDeployProduct2 = cloudDeployProduct2; + } + + public String getCloudDeployProduct2Name() { + return this.cloudDeployProduct2Name; + } + + public void setCloudDeployProduct2Name(String cloudDeployProduct2Name) { + this.cloudDeployProduct2Name = cloudDeployProduct2Name; + } + + public String getCloudDeployProduct3() { + return this.cloudDeployProduct3; + } + + public void setCloudDeployProduct3(String cloudDeployProduct3) { + this.cloudDeployProduct3 = cloudDeployProduct3; + } + + public String getCloudDeployProduct3Name() { + return this.cloudDeployProduct3Name; + } + + public void setCloudDeployProduct3Name(String cloudDeployProduct3Name) { + this.cloudDeployProduct3Name = cloudDeployProduct3Name; + } + + public String getCmC() { + return this.cmC; + } + + public void setCmC(String cmC) { + this.cmC = cmC; + } + + public String getCmP() { + return this.cmP; + } + + public void setCmP(String cmP) { + this.cmP = cmP; + } + + public String getCmU() { + return this.cmU; + } + + public void setCmU(String cmU) { + this.cmU = cmU; + } + + public String getCmV() { + return this.cmV; + } + + public void setCmV(String cmV) { + this.cmV = cmV; + } + + public Long getCnt() { + return this.cnt; + } + + public void setCnt(Long cnt) { + this.cnt = cnt; + } + + public String getCntString() { + return this.cntString; + } + + public void setCntString(String cntString) { + this.cntString = cntString; + } + + public String getComment() { + return this.comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public Integer getDeliveryAmount() { + return this.deliveryAmount; + } + + public void setDeliveryAmount(Integer deliveryAmount) { + this.deliveryAmount = deliveryAmount; + } + + public Integer getEffectStatus() { + return this.effectStatus; + } + + public void setEffectStatus(Integer effectStatus) { + this.effectStatus = effectStatus; + } + + public Long getExpireDate() { + return this.expireDate; + } + + public void setExpireDate(Long expireDate) { + this.expireDate = expireDate; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getInstall() { + return this.install; + } + + public void setInstall(Long install) { + this.install = install; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public Integer getLadingQuantity() { + return this.ladingQuantity; + } + + public void setLadingQuantity(Integer ladingQuantity) { + this.ladingQuantity = ladingQuantity; + } + + public Long getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Long ladingStatus) { + this.ladingStatus = ladingStatus; + } + + public Integer getLineNumber() { + return this.lineNumber; + } + + public void setLineNumber(Integer lineNumber) { + this.lineNumber = lineNumber; + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + } + + public String getLogicZoneName() { + return this.logicZoneName; + } + + public void setLogicZoneName(String logicZoneName) { + this.logicZoneName = logicZoneName; + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + } + + public Long getManufacturerBrand() { + return this.manufacturerBrand; + } + + public void setManufacturerBrand(Long manufacturerBrand) { + this.manufacturerBrand = manufacturerBrand; + } + + public String getManufacturerBrandName() { + return this.manufacturerBrandName; + } + + public void setManufacturerBrandName(String manufacturerBrandName) { + this.manufacturerBrandName = manufacturerBrandName; + } + + public Long getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Long modelLoad) { + this.modelLoad = modelLoad; + } + + public String getModelLoadString() { + return this.modelLoadString; + } + + public void setModelLoadString(String modelLoadString) { + this.modelLoadString = modelLoadString; + } + + public Boolean getModify() { + return this.modify; + } + + public void setModify(Boolean modify) { + this.modify = modify; + } + + public String getMsg() { + return this.msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public Long getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Long nakedDelivery) { + this.nakedDelivery = nakedDelivery; + } + + public String getNakedDeliveryName() { + return this.nakedDeliveryName; + } + + public void setNakedDeliveryName(String nakedDeliveryName) { + this.nakedDeliveryName = nakedDeliveryName; + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public Integer getOldCnt() { + return this.oldCnt; + } + + public void setOldCnt(Integer oldCnt) { + this.oldCnt = oldCnt; + } + + public Long getOrderId() { + return this.orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getOrgKey() { + return this.orgKey; + } + + public void setOrgKey(String orgKey) { + this.orgKey = orgKey; + } + + public Long getOriginId() { + return this.originId; + } + + public void setOriginId(Long originId) { + this.originId = originId; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getOutId() { + return this.outId; + } + + public void setOutId(String outId) { + this.outId = outId; + } + + public Integer getPickAmount() { + return this.pickAmount; + } + + public void setPickAmount(Integer pickAmount) { + this.pickAmount = pickAmount; + } + + public Long getPickOrderId() { + return this.pickOrderId; + } + + public void setPickOrderId(Long pickOrderId) { + this.pickOrderId = pickOrderId; + } + + public Long getPlanType() { + return this.planType; + } + + public void setPlanType(Long planType) { + this.planType = planType; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getProduct3EnName() { + return this.product3EnName; + } + + public void setProduct3EnName(String product3EnName) { + this.product3EnName = product3EnName; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public Long getQuotaPlanId() { + return this.quotaPlanId; + } + + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getReportId() { + return this.reportId; + } + + public void setReportId(String reportId) { + this.reportId = reportId; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + } + + public String getSafeZoneName() { + return this.safeZoneName; + } + + public void setSafeZoneName(String safeZoneName) { + this.safeZoneName = safeZoneName; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public Long getStatus() { + return this.status; + } + + public void setStatus(Long status) { + this.status = status; + } + + public String getStatusName() { + return this.statusName; + } + + public void setStatusName(String statusName) { + this.statusName = statusName; + } + + public String getSubordinateIndustryLine() { + return this.subordinateIndustryLine; + } + + public void setSubordinateIndustryLine(String subordinateIndustryLine) { + this.subordinateIndustryLine = subordinateIndustryLine; + } + + public String getSubordinateIndustryLineName() { + return this.subordinateIndustryLineName; + } + + public void setSubordinateIndustryLineName(String subordinateIndustryLineName) { + this.subordinateIndustryLineName = subordinateIndustryLineName; + } + + public Long getSuccess() { + return this.success; + } + + public void setSuccess(Long success) { + this.success = success; + } + + public Long getTime() { + return this.time; + } + + public void setTime(Long time) { + this.time = time; + } + + public Long getTimeSpan() { + return this.timeSpan; + } + + public void setTimeSpan(Long timeSpan) { + this.timeSpan = timeSpan; + } + + public String getTimeString() { + return this.timeString; + } + + public void setTimeString(String timeString) { + this.timeString = timeString; + } + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public String getUpdater() { + return this.updater; + } + + public void setUpdater(String updater) { + this.updater = updater; + } + + public String getUpdaterNic() { + return this.updaterNic; + } + + public void setUpdaterNic(String updaterNic) { + this.updaterNic = updaterNic; + } + + public Long getVersion() { + return this.version; + } + + public void setVersion(Long version) { + this.version = version; + } + } + + @Override + public GetPlanByIdResponse getInstance(UnmarshallerContext context) { + return GetPlanByIdResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListRequest.java new file mode 100644 index 0000000000..1a63ca2187 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListRequest.java @@ -0,0 +1,478 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetPlanListRequest extends RpcAcsRequest { + + + @SerializedName("statusList") + private List statusList; + + @SerializedName("orgNames") + private List orgNames; + + @SerializedName("dcosIds") + private List dcosIds; + + private String classZoneCode; + + private String nic; + + private String logicZoneCode; + + @SerializedName("product3List") + private List product3List; + + @SerializedName("originIds") + private List originIds; + + private Boolean includeDeleted; + + private String machineType; + + private Boolean superManager; + + private Integer nakedDelivery; + + private Long pageSize; + + @SerializedName("projectCodes") + private List projectCodes; + + private String countryType; + + private String azone; + + private String business; + + private String netArch; + + private Integer ladingStatus; + + private Integer currentPage; + + private String safeZoneCode; + + private String dateStartStr; + + @SerializedName("product1List") + private List product1List; + + @SerializedName("queryUsers") + private List queryUsers; + + private Integer changeSuccess; + + private String requireType; + + private Integer fromHistory; + + private Integer success; + + private String dateEndStr; + + private String roomCode; + + @SerializedName("outIds") + private List outIds; + + @SerializedName("product2List") + private List product2List; + + private String region; + public GetPlanListRequest() { + super("brinekingdom", "2019-06-27", "GetPlanList"); + setMethod(MethodType.POST); + } + + public List getStatusList() { + return this.statusList; + } + + public void setStatusList(List statusList) { + this.statusList = statusList; + if (statusList != null) { + putQueryParameter("StatusList" , new Gson().toJson(statusList)); + } + } + + public List getOrgNames() { + return this.orgNames; + } + + public void setOrgNames(List orgNames) { + this.orgNames = orgNames; + if (orgNames != null) { + putQueryParameter("OrgNames" , new Gson().toJson(orgNames)); + } + } + + public List getDcosIds() { + return this.dcosIds; + } + + public void setDcosIds(List dcosIds) { + this.dcosIds = dcosIds; + if (dcosIds != null) { + putQueryParameter("DcosIds" , new Gson().toJson(dcosIds)); + } + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + if(classZoneCode != null){ + putQueryParameter("ClassZoneCode", classZoneCode); + } + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + if(nic != null){ + putQueryParameter("Nic", nic); + } + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + if(logicZoneCode != null){ + putQueryParameter("LogicZoneCode", logicZoneCode); + } + } + + public List getProduct3List() { + return this.product3List; + } + + public void setProduct3List(List product3List) { + this.product3List = product3List; + if (product3List != null) { + putQueryParameter("Product3List" , new Gson().toJson(product3List)); + } + } + + public List getOriginIds() { + return this.originIds; + } + + public void setOriginIds(List originIds) { + this.originIds = originIds; + if (originIds != null) { + putQueryParameter("OriginIds" , new Gson().toJson(originIds)); + } + } + + public Boolean getIncludeDeleted() { + return this.includeDeleted; + } + + public void setIncludeDeleted(Boolean includeDeleted) { + this.includeDeleted = includeDeleted; + if(includeDeleted != null){ + putQueryParameter("IncludeDeleted", includeDeleted.toString()); + } + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + if(machineType != null){ + putQueryParameter("MachineType", machineType); + } + } + + public Boolean getSuperManager() { + return this.superManager; + } + + public void setSuperManager(Boolean superManager) { + this.superManager = superManager; + if(superManager != null){ + putQueryParameter("SuperManager", superManager.toString()); + } + } + + public Integer getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Integer nakedDelivery) { + this.nakedDelivery = nakedDelivery; + if(nakedDelivery != null){ + putQueryParameter("NakedDelivery", nakedDelivery.toString()); + } + } + + public Long getPageSize() { + return this.pageSize; + } + + public void setPageSize(Long pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public List getProjectCodes() { + return this.projectCodes; + } + + public void setProjectCodes(List projectCodes) { + this.projectCodes = projectCodes; + if (projectCodes != null) { + putQueryParameter("ProjectCodes" , new Gson().toJson(projectCodes)); + } + } + + public String getCountryType() { + return this.countryType; + } + + public void setCountryType(String countryType) { + this.countryType = countryType; + if(countryType != null){ + putQueryParameter("CountryType", countryType); + } + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + if(azone != null){ + putQueryParameter("Azone", azone); + } + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + if(business != null){ + putQueryParameter("Business", business); + } + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + if(netArch != null){ + putQueryParameter("NetArch", netArch); + } + } + + public Integer getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Integer ladingStatus) { + this.ladingStatus = ladingStatus; + if(ladingStatus != null){ + putQueryParameter("LadingStatus", ladingStatus.toString()); + } + } + + public Integer getCurrentPage() { + return this.currentPage; + } + + public void setCurrentPage(Integer currentPage) { + this.currentPage = currentPage; + if(currentPage != null){ + putQueryParameter("CurrentPage", currentPage.toString()); + } + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + if(safeZoneCode != null){ + putQueryParameter("SafeZoneCode", safeZoneCode); + } + } + + public String getDateStartStr() { + return this.dateStartStr; + } + + public void setDateStartStr(String dateStartStr) { + this.dateStartStr = dateStartStr; + if(dateStartStr != null){ + putQueryParameter("DateStartStr", dateStartStr); + } + } + + public List getProduct1List() { + return this.product1List; + } + + public void setProduct1List(List product1List) { + this.product1List = product1List; + if (product1List != null) { + putQueryParameter("Product1List" , new Gson().toJson(product1List)); + } + } + + public List getQueryUsers() { + return this.queryUsers; + } + + public void setQueryUsers(List queryUsers) { + this.queryUsers = queryUsers; + if (queryUsers != null) { + putQueryParameter("QueryUsers" , new Gson().toJson(queryUsers)); + } + } + + public Integer getChangeSuccess() { + return this.changeSuccess; + } + + public void setChangeSuccess(Integer changeSuccess) { + this.changeSuccess = changeSuccess; + if(changeSuccess != null){ + putQueryParameter("ChangeSuccess", changeSuccess.toString()); + } + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + if(requireType != null){ + putQueryParameter("RequireType", requireType); + } + } + + public Integer getFromHistory() { + return this.fromHistory; + } + + public void setFromHistory(Integer fromHistory) { + this.fromHistory = fromHistory; + if(fromHistory != null){ + putQueryParameter("FromHistory", fromHistory.toString()); + } + } + + public Integer getSuccess() { + return this.success; + } + + public void setSuccess(Integer success) { + this.success = success; + if(success != null){ + putQueryParameter("Success", success.toString()); + } + } + + public String getDateEndStr() { + return this.dateEndStr; + } + + public void setDateEndStr(String dateEndStr) { + this.dateEndStr = dateEndStr; + if(dateEndStr != null){ + putQueryParameter("DateEndStr", dateEndStr); + } + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + if(roomCode != null){ + putQueryParameter("RoomCode", roomCode); + } + } + + public List getOutIds() { + return this.outIds; + } + + public void setOutIds(List outIds) { + this.outIds = outIds; + if (outIds != null) { + putQueryParameter("OutIds" , new Gson().toJson(outIds)); + } + } + + public List getProduct2List() { + return this.product2List; + } + + public void setProduct2List(List product2List) { + this.product2List = product2List; + if (product2List != null) { + putQueryParameter("Product2List" , new Gson().toJson(product2List)); + } + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + if(region != null){ + putQueryParameter("Region", region); + } + } + + @Override + public Class getResponseClass() { + return GetPlanListResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListResponse.java new file mode 100644 index 0000000000..15d1badd50 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListResponse.java @@ -0,0 +1,1273 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetPlanListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetPlanListResponse extends AcsResponse { + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private Result result; + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Result getResult() { + return this.result; + } + + public void setResult(Result result) { + this.result = result; + } + + public static class Result { + + private Long currentPage; + + private Long pageCount; + + private Long pageSize; + + private Long totalCount; + + private List dataList; + + public Long getCurrentPage() { + return this.currentPage; + } + + public void setCurrentPage(Long currentPage) { + this.currentPage = currentPage; + } + + public Long getPageCount() { + return this.pageCount; + } + + public void setPageCount(Long pageCount) { + this.pageCount = pageCount; + } + + public Long getPageSize() { + return this.pageSize; + } + + public void setPageSize(Long pageSize) { + this.pageSize = pageSize; + } + + public Long getTotalCount() { + return this.totalCount; + } + + public void setTotalCount(Long totalCount) { + this.totalCount = totalCount; + } + + public List getDataList() { + return this.dataList; + } + + public void setDataList(List dataList) { + this.dataList = dataList; + } + + public static class DataListItem { + + private String accessory; + + private String agreement; + + private Integer allocateAmount; + + private Long appGroupId; + + private String appGroupName; + + private Long applyType; + + private String assetReceiver; + + private String assetReceiverNick; + + private Integer autoLading; + + private String azone; + + private Integer benefitOld; + + private String benefitOldName; + + private String business; + + private String businessEnName; + + private String businessMode; + + private String businessModeName; + + private String businessName; + + private String cbmDemander; + + private String changeMsg; + + private Long changeSuccess; + + private String channelName1; + + private String channelName2; + + private String classZoneCode; + + private String classZoneName; + + private String cloudDeployProduct1; + + private String cloudDeployProduct1Name; + + private String cloudDeployProduct2; + + private String cloudDeployProduct2Name; + + private String cloudDeployProduct3; + + private String cloudDeployProduct3Name; + + private String cmC; + + private String cmP; + + private String cmU; + + private String cmV; + + private Long cnt; + + private String cntString; + + private String comment; + + private String country; + + private Long createTime; + + private String creator; + + private String creatorNic; + + private Integer deliveryAmount; + + private Integer effectStatus; + + private Long expireDate; + + private Long id; + + private Long install; + + private Long installId; + + private String installName; + + private String installStr; + + private Integer ladingQuantity; + + private Long ladingStatus; + + private Integer lineNumber; + + private String logicZoneCode; + + private String logicZoneName; + + private String machineType; + + private Long manufacturerBrand; + + private String manufacturerBrandName; + + private Long modelLoad; + + private String modelLoadString; + + private Boolean modify; + + private String msg; + + private Long nakedDelivery; + + private String nakedDeliveryName; + + private String netArch; + + private String nic; + + private Integer oldCnt; + + private Long orderId; + + private String orgKey; + + private Long originId; + + private Long osId; + + private String osName; + + private String outId; + + private Integer waitPickAmount; + + private Integer pickAmount; + + private Integer dcosPickAmount; + + private Long pickOrderId; + + private Long planType; + + private String priority; + + private String processId; + + private String product1; + + private String product1Name; + + private String product2; + + private String product2Name; + + private String product3; + + private String product3EnName; + + private String product3Name; + + private String projectCode; + + private String projectName; + + private String projectType; + + private String projectTypeName; + + private Long quotaPlanId; + + private String region; + + private String reportId; + + private String requireType; + + private String requireTypeName; + + private String roomCode; + + private String safeYear; + + private String safeZoneCode; + + private String safeZoneName; + + private String scenario; + + private String source; + + private Long status; + + private String statusName; + + private String subordinateIndustryLine; + + private String subordinateIndustryLineName; + + private Long success; + + private Long time; + + private Long timeSpan; + + private String timeString; + + private Long updateTime; + + private String updater; + + private String updaterNic; + + private Long version; + + public String getAccessory() { + return this.accessory; + } + + public void setAccessory(String accessory) { + this.accessory = accessory; + } + + public String getAgreement() { + return this.agreement; + } + + public void setAgreement(String agreement) { + this.agreement = agreement; + } + + public Integer getAllocateAmount() { + return this.allocateAmount; + } + + public void setAllocateAmount(Integer allocateAmount) { + this.allocateAmount = allocateAmount; + } + + public Long getAppGroupId() { + return this.appGroupId; + } + + public void setAppGroupId(Long appGroupId) { + this.appGroupId = appGroupId; + } + + public String getAppGroupName() { + return this.appGroupName; + } + + public void setAppGroupName(String appGroupName) { + this.appGroupName = appGroupName; + } + + public Long getApplyType() { + return this.applyType; + } + + public void setApplyType(Long applyType) { + this.applyType = applyType; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public Integer getAutoLading() { + return this.autoLading; + } + + public void setAutoLading(Integer autoLading) { + this.autoLading = autoLading; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getBenefitOldName() { + return this.benefitOldName; + } + + public void setBenefitOldName(String benefitOldName) { + this.benefitOldName = benefitOldName; + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + } + + public String getBusinessEnName() { + return this.businessEnName; + } + + public void setBusinessEnName(String businessEnName) { + this.businessEnName = businessEnName; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public String getBusinessModeName() { + return this.businessModeName; + } + + public void setBusinessModeName(String businessModeName) { + this.businessModeName = businessModeName; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public String getCbmDemander() { + return this.cbmDemander; + } + + public void setCbmDemander(String cbmDemander) { + this.cbmDemander = cbmDemander; + } + + public String getChangeMsg() { + return this.changeMsg; + } + + public void setChangeMsg(String changeMsg) { + this.changeMsg = changeMsg; + } + + public Long getChangeSuccess() { + return this.changeSuccess; + } + + public void setChangeSuccess(Long changeSuccess) { + this.changeSuccess = changeSuccess; + } + + public String getChannelName1() { + return this.channelName1; + } + + public void setChannelName1(String channelName1) { + this.channelName1 = channelName1; + } + + public String getChannelName2() { + return this.channelName2; + } + + public void setChannelName2(String channelName2) { + this.channelName2 = channelName2; + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public String getCloudDeployProduct1() { + return this.cloudDeployProduct1; + } + + public void setCloudDeployProduct1(String cloudDeployProduct1) { + this.cloudDeployProduct1 = cloudDeployProduct1; + } + + public String getCloudDeployProduct1Name() { + return this.cloudDeployProduct1Name; + } + + public void setCloudDeployProduct1Name(String cloudDeployProduct1Name) { + this.cloudDeployProduct1Name = cloudDeployProduct1Name; + } + + public String getCloudDeployProduct2() { + return this.cloudDeployProduct2; + } + + public void setCloudDeployProduct2(String cloudDeployProduct2) { + this.cloudDeployProduct2 = cloudDeployProduct2; + } + + public String getCloudDeployProduct2Name() { + return this.cloudDeployProduct2Name; + } + + public void setCloudDeployProduct2Name(String cloudDeployProduct2Name) { + this.cloudDeployProduct2Name = cloudDeployProduct2Name; + } + + public String getCloudDeployProduct3() { + return this.cloudDeployProduct3; + } + + public void setCloudDeployProduct3(String cloudDeployProduct3) { + this.cloudDeployProduct3 = cloudDeployProduct3; + } + + public String getCloudDeployProduct3Name() { + return this.cloudDeployProduct3Name; + } + + public void setCloudDeployProduct3Name(String cloudDeployProduct3Name) { + this.cloudDeployProduct3Name = cloudDeployProduct3Name; + } + + public String getCmC() { + return this.cmC; + } + + public void setCmC(String cmC) { + this.cmC = cmC; + } + + public String getCmP() { + return this.cmP; + } + + public void setCmP(String cmP) { + this.cmP = cmP; + } + + public String getCmU() { + return this.cmU; + } + + public void setCmU(String cmU) { + this.cmU = cmU; + } + + public String getCmV() { + return this.cmV; + } + + public void setCmV(String cmV) { + this.cmV = cmV; + } + + public Long getCnt() { + return this.cnt; + } + + public void setCnt(Long cnt) { + this.cnt = cnt; + } + + public String getCntString() { + return this.cntString; + } + + public void setCntString(String cntString) { + this.cntString = cntString; + } + + public String getComment() { + return this.comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public Integer getDeliveryAmount() { + return this.deliveryAmount; + } + + public void setDeliveryAmount(Integer deliveryAmount) { + this.deliveryAmount = deliveryAmount; + } + + public Integer getEffectStatus() { + return this.effectStatus; + } + + public void setEffectStatus(Integer effectStatus) { + this.effectStatus = effectStatus; + } + + public Long getExpireDate() { + return this.expireDate; + } + + public void setExpireDate(Long expireDate) { + this.expireDate = expireDate; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getInstall() { + return this.install; + } + + public void setInstall(Long install) { + this.install = install; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public String getInstallStr() { + return this.installStr; + } + + public void setInstallStr(String installStr) { + this.installStr = installStr; + } + + public Integer getLadingQuantity() { + return this.ladingQuantity; + } + + public void setLadingQuantity(Integer ladingQuantity) { + this.ladingQuantity = ladingQuantity; + } + + public Long getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Long ladingStatus) { + this.ladingStatus = ladingStatus; + } + + public Integer getLineNumber() { + return this.lineNumber; + } + + public void setLineNumber(Integer lineNumber) { + this.lineNumber = lineNumber; + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + } + + public String getLogicZoneName() { + return this.logicZoneName; + } + + public void setLogicZoneName(String logicZoneName) { + this.logicZoneName = logicZoneName; + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + } + + public Long getManufacturerBrand() { + return this.manufacturerBrand; + } + + public void setManufacturerBrand(Long manufacturerBrand) { + this.manufacturerBrand = manufacturerBrand; + } + + public String getManufacturerBrandName() { + return this.manufacturerBrandName; + } + + public void setManufacturerBrandName(String manufacturerBrandName) { + this.manufacturerBrandName = manufacturerBrandName; + } + + public Long getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Long modelLoad) { + this.modelLoad = modelLoad; + } + + public String getModelLoadString() { + return this.modelLoadString; + } + + public void setModelLoadString(String modelLoadString) { + this.modelLoadString = modelLoadString; + } + + public Boolean getModify() { + return this.modify; + } + + public void setModify(Boolean modify) { + this.modify = modify; + } + + public String getMsg() { + return this.msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public Long getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Long nakedDelivery) { + this.nakedDelivery = nakedDelivery; + } + + public String getNakedDeliveryName() { + return this.nakedDeliveryName; + } + + public void setNakedDeliveryName(String nakedDeliveryName) { + this.nakedDeliveryName = nakedDeliveryName; + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public Integer getOldCnt() { + return this.oldCnt; + } + + public void setOldCnt(Integer oldCnt) { + this.oldCnt = oldCnt; + } + + public Long getOrderId() { + return this.orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getOrgKey() { + return this.orgKey; + } + + public void setOrgKey(String orgKey) { + this.orgKey = orgKey; + } + + public Long getOriginId() { + return this.originId; + } + + public void setOriginId(Long originId) { + this.originId = originId; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getOutId() { + return this.outId; + } + + public void setOutId(String outId) { + this.outId = outId; + } + + public Integer getWaitPickAmount() { + return this.waitPickAmount; + } + + public void setWaitPickAmount(Integer waitPickAmount) { + this.waitPickAmount = waitPickAmount; + } + + public Integer getPickAmount() { + return this.pickAmount; + } + + public void setPickAmount(Integer pickAmount) { + this.pickAmount = pickAmount; + } + + public Integer getDcosPickAmount() { + return this.dcosPickAmount; + } + + public void setDcosPickAmount(Integer dcosPickAmount) { + this.dcosPickAmount = dcosPickAmount; + } + + public Long getPickOrderId() { + return this.pickOrderId; + } + + public void setPickOrderId(Long pickOrderId) { + this.pickOrderId = pickOrderId; + } + + public Long getPlanType() { + return this.planType; + } + + public void setPlanType(Long planType) { + this.planType = planType; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getProduct3EnName() { + return this.product3EnName; + } + + public void setProduct3EnName(String product3EnName) { + this.product3EnName = product3EnName; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public Long getQuotaPlanId() { + return this.quotaPlanId; + } + + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getReportId() { + return this.reportId; + } + + public void setReportId(String reportId) { + this.reportId = reportId; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + } + + public String getSafeZoneName() { + return this.safeZoneName; + } + + public void setSafeZoneName(String safeZoneName) { + this.safeZoneName = safeZoneName; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public Long getStatus() { + return this.status; + } + + public void setStatus(Long status) { + this.status = status; + } + + public String getStatusName() { + return this.statusName; + } + + public void setStatusName(String statusName) { + this.statusName = statusName; + } + + public String getSubordinateIndustryLine() { + return this.subordinateIndustryLine; + } + + public void setSubordinateIndustryLine(String subordinateIndustryLine) { + this.subordinateIndustryLine = subordinateIndustryLine; + } + + public String getSubordinateIndustryLineName() { + return this.subordinateIndustryLineName; + } + + public void setSubordinateIndustryLineName(String subordinateIndustryLineName) { + this.subordinateIndustryLineName = subordinateIndustryLineName; + } + + public Long getSuccess() { + return this.success; + } + + public void setSuccess(Long success) { + this.success = success; + } + + public Long getTime() { + return this.time; + } + + public void setTime(Long time) { + this.time = time; + } + + public Long getTimeSpan() { + return this.timeSpan; + } + + public void setTimeSpan(Long timeSpan) { + this.timeSpan = timeSpan; + } + + public String getTimeString() { + return this.timeString; + } + + public void setTimeString(String timeString) { + this.timeString = timeString; + } + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public String getUpdater() { + return this.updater; + } + + public void setUpdater(String updater) { + this.updater = updater; + } + + public String getUpdaterNic() { + return this.updaterNic; + } + + public void setUpdaterNic(String updaterNic) { + this.updaterNic = updaterNic; + } + + public Long getVersion() { + return this.version; + } + + public void setVersion(Long version) { + this.version = version; + } + } + } + + @Override + public GetPlanListResponse getInstance(UnmarshallerContext context) { + return GetPlanListResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListWithReverseRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListWithReverseRequest.java new file mode 100644 index 0000000000..28abc24198 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListWithReverseRequest.java @@ -0,0 +1,1456 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetPlanListWithReverseRequest extends RpcAcsRequest { + + + private String fcstDate; + + @SerializedName("dcosIds") + private List dcosIds; + + @SerializedName("snList") + private List snList; + + private String product2; + + private String product1; + + private String nic; + + private String product3; + + private String machineType; + + private Boolean countryNull; + + private Integer diffStart; + + private Integer downloadKey; + + private String productGroup; + + private String orgKey; + + @SerializedName("businessTypeList") + private List businessTypeList; + + private String azone; + + private String order; + + private String currentUser; + + private String cbmDemander; + + private String agreement; + + private Integer ladingStatus; + + private Integer clickReverse; + + @SerializedName("product1List") + private List product1List; + + private Integer fromHistory; + + private Integer exclusiveStatus; + + @SerializedName("prList") + private List prList; + + private Integer fisYear; + + private Boolean fromSop; + + @SerializedName("exclusiveProduct1ApproveList") + private List exclusiveProduct1ApproveList; + + private Integer status; + + private Integer flag; + + private String applyComment; + + @SerializedName("statusList") + private List statusList; + + @SerializedName("requireTypeList") + private List requireTypeList; + + private Integer clickNewModify; + + private Integer sumType; + + private Boolean superManager; + + private String dataType; + + private Integer nakedDelivery; + + private Integer pageSize; + + private Boolean orgKeyNull; + + private Integer clickModify; + + @SerializedName("product2ApproveList") + private List product2ApproveList; + + private String creatorOrModifierEmpId; + + private Integer diffEnd; + + private String creator; + + private String business; + + private String quotaPlanCreatorOrModifierEmpId; + + @SerializedName("roomCodeList") + private List roomCodeList; + + private Integer currentPage; + + private String safeZoneCode; + + @SerializedName("modelNameList") + private List modelNameList; + + @SerializedName("ladingIds") + private List ladingIds; + + @SerializedName("queryUsers") + private List queryUsers; + + @SerializedName("poList") + private List poList; + + private Integer changeSuccess; + + private String processId; + + private String customerCode; + + private String fcstVersion; + + private String classZoneCode; + + private String azEnName; + + private String logicZoneCode; + + private Integer excelStatus; + + private String source; + + private Integer planType; + + @SerializedName("ladingOrderIds") + private List ladingOrderIds; + + private Boolean includeDeleted; + + @SerializedName("exclusiveBusinessTypeList") + private List exclusiveBusinessTypeList; + + private String picker; + + @SerializedName("projectCodes") + private List projectCodes; + + private Integer approveApplyType; + + private String productRegion; + + private String netArch; + + private Integer offset; + + private Integer level; + + private String manufacturerBrand; + + private Integer timeSpan; + + private Integer exportFromApprove; + + private String requireType; + + private Integer success; + + private String regionEnName; + + private String approveProduct2; + + @SerializedName("product2List") + private List product2List; + + @SerializedName("outIds") + private List outIds; + + private String region; + + private String subordinateIndustryLine; + + @SerializedName("orgNames") + private List orgNames; + + @SerializedName("exclusiveStatusList") + private List exclusiveStatusList; + + @SerializedName("product3List") + private List product3List; + + @SerializedName("originIds") + private List originIds; + + private Boolean pureAllocate; + + private String updater; + + private Integer versionId; + + private String channelType; + + private String projectType; + + private String countryType; + + private String productSu; + + private String productCluster; + + private Boolean robotOrHuman; + + private Integer rdsRoomType; + + private Boolean cntEffective; + + private String workNo; + + private Integer clickNewReverse; + + @SerializedName("sourceList") + private List sourceList; + + @SerializedName("regionList") + private List regionList; + + private String roomCode; + + @SerializedName("ladingStatusList") + private List ladingStatusList; + + private Integer applyType; + public GetPlanListWithReverseRequest() { + super("brinekingdom", "2019-06-27", "GetPlanListWithReverse"); + setMethod(MethodType.POST); + } + + public String getFcstDate() { + return this.fcstDate; + } + + public void setFcstDate(String fcstDate) { + this.fcstDate = fcstDate; + if(fcstDate != null){ + putQueryParameter("FcstDate", fcstDate); + } + } + + public List getDcosIds() { + return this.dcosIds; + } + + public void setDcosIds(List dcosIds) { + this.dcosIds = dcosIds; + if (dcosIds != null) { + putQueryParameter("DcosIds" , new Gson().toJson(dcosIds)); + } + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + if (snList != null) { + putQueryParameter("SnList" , new Gson().toJson(snList)); + } + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + if(product2 != null){ + putQueryParameter("Product2", product2); + } + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + if(product1 != null){ + putQueryParameter("Product1", product1); + } + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + if(nic != null){ + putQueryParameter("Nic", nic); + } + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + if(product3 != null){ + putQueryParameter("Product3", product3); + } + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + if(machineType != null){ + putQueryParameter("MachineType", machineType); + } + } + + public Boolean getCountryNull() { + return this.countryNull; + } + + public void setCountryNull(Boolean countryNull) { + this.countryNull = countryNull; + if(countryNull != null){ + putQueryParameter("CountryNull", countryNull.toString()); + } + } + + public Integer getDiffStart() { + return this.diffStart; + } + + public void setDiffStart(Integer diffStart) { + this.diffStart = diffStart; + if(diffStart != null){ + putQueryParameter("DiffStart", diffStart.toString()); + } + } + + public Integer getDownloadKey() { + return this.downloadKey; + } + + public void setDownloadKey(Integer downloadKey) { + this.downloadKey = downloadKey; + if(downloadKey != null){ + putQueryParameter("DownloadKey", downloadKey.toString()); + } + } + + public String getProductGroup() { + return this.productGroup; + } + + public void setProductGroup(String productGroup) { + this.productGroup = productGroup; + if(productGroup != null){ + putQueryParameter("ProductGroup", productGroup); + } + } + + public String getOrgKey() { + return this.orgKey; + } + + public void setOrgKey(String orgKey) { + this.orgKey = orgKey; + if(orgKey != null){ + putQueryParameter("OrgKey", orgKey); + } + } + + public List getBusinessTypeList() { + return this.businessTypeList; + } + + public void setBusinessTypeList(List businessTypeList) { + this.businessTypeList = businessTypeList; + if (businessTypeList != null) { + putQueryParameter("BusinessTypeList" , new Gson().toJson(businessTypeList)); + } + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + if(azone != null){ + putQueryParameter("Azone", azone); + } + } + + public String getOrder() { + return this.order; + } + + public void setOrder(String order) { + this.order = order; + if(order != null){ + putQueryParameter("Order", order); + } + } + + public String getCurrentUser() { + return this.currentUser; + } + + public void setCurrentUser(String currentUser) { + this.currentUser = currentUser; + if(currentUser != null){ + putQueryParameter("CurrentUser", currentUser); + } + } + + public String getCbmDemander() { + return this.cbmDemander; + } + + public void setCbmDemander(String cbmDemander) { + this.cbmDemander = cbmDemander; + if(cbmDemander != null){ + putQueryParameter("CbmDemander", cbmDemander); + } + } + + public String getAgreement() { + return this.agreement; + } + + public void setAgreement(String agreement) { + this.agreement = agreement; + if(agreement != null){ + putQueryParameter("Agreement", agreement); + } + } + + public Integer getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Integer ladingStatus) { + this.ladingStatus = ladingStatus; + if(ladingStatus != null){ + putQueryParameter("LadingStatus", ladingStatus.toString()); + } + } + + public Integer getClickReverse() { + return this.clickReverse; + } + + public void setClickReverse(Integer clickReverse) { + this.clickReverse = clickReverse; + if(clickReverse != null){ + putQueryParameter("ClickReverse", clickReverse.toString()); + } + } + + public List getProduct1List() { + return this.product1List; + } + + public void setProduct1List(List product1List) { + this.product1List = product1List; + if (product1List != null) { + putQueryParameter("Product1List" , new Gson().toJson(product1List)); + } + } + + public Integer getFromHistory() { + return this.fromHistory; + } + + public void setFromHistory(Integer fromHistory) { + this.fromHistory = fromHistory; + if(fromHistory != null){ + putQueryParameter("FromHistory", fromHistory.toString()); + } + } + + public Integer getExclusiveStatus() { + return this.exclusiveStatus; + } + + public void setExclusiveStatus(Integer exclusiveStatus) { + this.exclusiveStatus = exclusiveStatus; + if(exclusiveStatus != null){ + putQueryParameter("ExclusiveStatus", exclusiveStatus.toString()); + } + } + + public List getPrList() { + return this.prList; + } + + public void setPrList(List prList) { + this.prList = prList; + if (prList != null) { + putQueryParameter("PrList" , new Gson().toJson(prList)); + } + } + + public Integer getFisYear() { + return this.fisYear; + } + + public void setFisYear(Integer fisYear) { + this.fisYear = fisYear; + if(fisYear != null){ + putQueryParameter("FisYear", fisYear.toString()); + } + } + + public Boolean getFromSop() { + return this.fromSop; + } + + public void setFromSop(Boolean fromSop) { + this.fromSop = fromSop; + if(fromSop != null){ + putQueryParameter("FromSop", fromSop.toString()); + } + } + + public List getExclusiveProduct1ApproveList() { + return this.exclusiveProduct1ApproveList; + } + + public void setExclusiveProduct1ApproveList(List exclusiveProduct1ApproveList) { + this.exclusiveProduct1ApproveList = exclusiveProduct1ApproveList; + if (exclusiveProduct1ApproveList != null) { + putQueryParameter("ExclusiveProduct1ApproveList" , new Gson().toJson(exclusiveProduct1ApproveList)); + } + } + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + public Integer getFlag() { + return this.flag; + } + + public void setFlag(Integer flag) { + this.flag = flag; + if(flag != null){ + putQueryParameter("Flag", flag.toString()); + } + } + + public String getApplyComment() { + return this.applyComment; + } + + public void setApplyComment(String applyComment) { + this.applyComment = applyComment; + if(applyComment != null){ + putQueryParameter("ApplyComment", applyComment); + } + } + + public List getStatusList() { + return this.statusList; + } + + public void setStatusList(List statusList) { + this.statusList = statusList; + if (statusList != null) { + putQueryParameter("StatusList" , new Gson().toJson(statusList)); + } + } + + public List getRequireTypeList() { + return this.requireTypeList; + } + + public void setRequireTypeList(List requireTypeList) { + this.requireTypeList = requireTypeList; + if (requireTypeList != null) { + putQueryParameter("RequireTypeList" , new Gson().toJson(requireTypeList)); + } + } + + public Integer getClickNewModify() { + return this.clickNewModify; + } + + public void setClickNewModify(Integer clickNewModify) { + this.clickNewModify = clickNewModify; + if(clickNewModify != null){ + putQueryParameter("ClickNewModify", clickNewModify.toString()); + } + } + + public Integer getSumType() { + return this.sumType; + } + + public void setSumType(Integer sumType) { + this.sumType = sumType; + if(sumType != null){ + putQueryParameter("SumType", sumType.toString()); + } + } + + public Boolean getSuperManager() { + return this.superManager; + } + + public void setSuperManager(Boolean superManager) { + this.superManager = superManager; + if(superManager != null){ + putQueryParameter("SuperManager", superManager.toString()); + } + } + + public String getDataType() { + return this.dataType; + } + + public void setDataType(String dataType) { + this.dataType = dataType; + if(dataType != null){ + putQueryParameter("DataType", dataType); + } + } + + public Integer getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Integer nakedDelivery) { + this.nakedDelivery = nakedDelivery; + if(nakedDelivery != null){ + putQueryParameter("NakedDelivery", nakedDelivery.toString()); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public Boolean getOrgKeyNull() { + return this.orgKeyNull; + } + + public void setOrgKeyNull(Boolean orgKeyNull) { + this.orgKeyNull = orgKeyNull; + if(orgKeyNull != null){ + putQueryParameter("OrgKeyNull", orgKeyNull.toString()); + } + } + + public Integer getClickModify() { + return this.clickModify; + } + + public void setClickModify(Integer clickModify) { + this.clickModify = clickModify; + if(clickModify != null){ + putQueryParameter("ClickModify", clickModify.toString()); + } + } + + public List getProduct2ApproveList() { + return this.product2ApproveList; + } + + public void setProduct2ApproveList(List product2ApproveList) { + this.product2ApproveList = product2ApproveList; + if (product2ApproveList != null) { + putQueryParameter("Product2ApproveList" , new Gson().toJson(product2ApproveList)); + } + } + + public String getCreatorOrModifierEmpId() { + return this.creatorOrModifierEmpId; + } + + public void setCreatorOrModifierEmpId(String creatorOrModifierEmpId) { + this.creatorOrModifierEmpId = creatorOrModifierEmpId; + if(creatorOrModifierEmpId != null){ + putQueryParameter("CreatorOrModifierEmpId", creatorOrModifierEmpId); + } + } + + public Integer getDiffEnd() { + return this.diffEnd; + } + + public void setDiffEnd(Integer diffEnd) { + this.diffEnd = diffEnd; + if(diffEnd != null){ + putQueryParameter("DiffEnd", diffEnd.toString()); + } + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + if(creator != null){ + putQueryParameter("Creator", creator); + } + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + if(business != null){ + putQueryParameter("Business", business); + } + } + + public String getQuotaPlanCreatorOrModifierEmpId() { + return this.quotaPlanCreatorOrModifierEmpId; + } + + public void setQuotaPlanCreatorOrModifierEmpId(String quotaPlanCreatorOrModifierEmpId) { + this.quotaPlanCreatorOrModifierEmpId = quotaPlanCreatorOrModifierEmpId; + if(quotaPlanCreatorOrModifierEmpId != null){ + putQueryParameter("QuotaPlanCreatorOrModifierEmpId", quotaPlanCreatorOrModifierEmpId); + } + } + + public List getRoomCodeList() { + return this.roomCodeList; + } + + public void setRoomCodeList(List roomCodeList) { + this.roomCodeList = roomCodeList; + if (roomCodeList != null) { + putQueryParameter("RoomCodeList" , new Gson().toJson(roomCodeList)); + } + } + + public Integer getCurrentPage() { + return this.currentPage; + } + + public void setCurrentPage(Integer currentPage) { + this.currentPage = currentPage; + if(currentPage != null){ + putQueryParameter("CurrentPage", currentPage.toString()); + } + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + if(safeZoneCode != null){ + putQueryParameter("SafeZoneCode", safeZoneCode); + } + } + + public List getModelNameList() { + return this.modelNameList; + } + + public void setModelNameList(List modelNameList) { + this.modelNameList = modelNameList; + if (modelNameList != null) { + putQueryParameter("ModelNameList" , new Gson().toJson(modelNameList)); + } + } + + public List getLadingIds() { + return this.ladingIds; + } + + public void setLadingIds(List ladingIds) { + this.ladingIds = ladingIds; + if (ladingIds != null) { + putQueryParameter("LadingIds" , new Gson().toJson(ladingIds)); + } + } + + public List getQueryUsers() { + return this.queryUsers; + } + + public void setQueryUsers(List queryUsers) { + this.queryUsers = queryUsers; + if (queryUsers != null) { + putQueryParameter("QueryUsers" , new Gson().toJson(queryUsers)); + } + } + + public List getPoList() { + return this.poList; + } + + public void setPoList(List poList) { + this.poList = poList; + if (poList != null) { + putQueryParameter("PoList" , new Gson().toJson(poList)); + } + } + + public Integer getChangeSuccess() { + return this.changeSuccess; + } + + public void setChangeSuccess(Integer changeSuccess) { + this.changeSuccess = changeSuccess; + if(changeSuccess != null){ + putQueryParameter("ChangeSuccess", changeSuccess.toString()); + } + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + if(processId != null){ + putQueryParameter("ProcessId", processId); + } + } + + public String getCustomerCode() { + return this.customerCode; + } + + public void setCustomerCode(String customerCode) { + this.customerCode = customerCode; + if(customerCode != null){ + putQueryParameter("CustomerCode", customerCode); + } + } + + public String getFcstVersion() { + return this.fcstVersion; + } + + public void setFcstVersion(String fcstVersion) { + this.fcstVersion = fcstVersion; + if(fcstVersion != null){ + putQueryParameter("FcstVersion", fcstVersion); + } + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + if(classZoneCode != null){ + putQueryParameter("ClassZoneCode", classZoneCode); + } + } + + public String getAzEnName() { + return this.azEnName; + } + + public void setAzEnName(String azEnName) { + this.azEnName = azEnName; + if(azEnName != null){ + putQueryParameter("AzEnName", azEnName); + } + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + if(logicZoneCode != null){ + putQueryParameter("LogicZoneCode", logicZoneCode); + } + } + + public Integer getExcelStatus() { + return this.excelStatus; + } + + public void setExcelStatus(Integer excelStatus) { + this.excelStatus = excelStatus; + if(excelStatus != null){ + putQueryParameter("ExcelStatus", excelStatus.toString()); + } + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + if(source != null){ + putQueryParameter("Source", source); + } + } + + public Integer getPlanType() { + return this.planType; + } + + public void setPlanType(Integer planType) { + this.planType = planType; + if(planType != null){ + putQueryParameter("PlanType", planType.toString()); + } + } + + public List getLadingOrderIds() { + return this.ladingOrderIds; + } + + public void setLadingOrderIds(List ladingOrderIds) { + this.ladingOrderIds = ladingOrderIds; + if (ladingOrderIds != null) { + putQueryParameter("LadingOrderIds" , new Gson().toJson(ladingOrderIds)); + } + } + + public Boolean getIncludeDeleted() { + return this.includeDeleted; + } + + public void setIncludeDeleted(Boolean includeDeleted) { + this.includeDeleted = includeDeleted; + if(includeDeleted != null){ + putQueryParameter("IncludeDeleted", includeDeleted.toString()); + } + } + + public List getExclusiveBusinessTypeList() { + return this.exclusiveBusinessTypeList; + } + + public void setExclusiveBusinessTypeList(List exclusiveBusinessTypeList) { + this.exclusiveBusinessTypeList = exclusiveBusinessTypeList; + if (exclusiveBusinessTypeList != null) { + putQueryParameter("ExclusiveBusinessTypeList" , new Gson().toJson(exclusiveBusinessTypeList)); + } + } + + public String getPicker() { + return this.picker; + } + + public void setPicker(String picker) { + this.picker = picker; + if(picker != null){ + putQueryParameter("Picker", picker); + } + } + + public List getProjectCodes() { + return this.projectCodes; + } + + public void setProjectCodes(List projectCodes) { + this.projectCodes = projectCodes; + if (projectCodes != null) { + putQueryParameter("ProjectCodes" , new Gson().toJson(projectCodes)); + } + } + + public Integer getApproveApplyType() { + return this.approveApplyType; + } + + public void setApproveApplyType(Integer approveApplyType) { + this.approveApplyType = approveApplyType; + if(approveApplyType != null){ + putQueryParameter("ApproveApplyType", approveApplyType.toString()); + } + } + + public String getProductRegion() { + return this.productRegion; + } + + public void setProductRegion(String productRegion) { + this.productRegion = productRegion; + if(productRegion != null){ + putQueryParameter("ProductRegion", productRegion); + } + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + if(netArch != null){ + putQueryParameter("NetArch", netArch); + } + } + + public Integer getOffset() { + return this.offset; + } + + public void setOffset(Integer offset) { + this.offset = offset; + if(offset != null){ + putQueryParameter("Offset", offset.toString()); + } + } + + public Integer getLevel() { + return this.level; + } + + public void setLevel(Integer level) { + this.level = level; + if(level != null){ + putQueryParameter("Level", level.toString()); + } + } + + public String getManufacturerBrand() { + return this.manufacturerBrand; + } + + public void setManufacturerBrand(String manufacturerBrand) { + this.manufacturerBrand = manufacturerBrand; + if(manufacturerBrand != null){ + putQueryParameter("ManufacturerBrand", manufacturerBrand); + } + } + + public Integer getTimeSpan() { + return this.timeSpan; + } + + public void setTimeSpan(Integer timeSpan) { + this.timeSpan = timeSpan; + if(timeSpan != null){ + putQueryParameter("TimeSpan", timeSpan.toString()); + } + } + + public Integer getExportFromApprove() { + return this.exportFromApprove; + } + + public void setExportFromApprove(Integer exportFromApprove) { + this.exportFromApprove = exportFromApprove; + if(exportFromApprove != null){ + putQueryParameter("ExportFromApprove", exportFromApprove.toString()); + } + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + if(requireType != null){ + putQueryParameter("RequireType", requireType); + } + } + + public Integer getSuccess() { + return this.success; + } + + public void setSuccess(Integer success) { + this.success = success; + if(success != null){ + putQueryParameter("Success", success.toString()); + } + } + + public String getRegionEnName() { + return this.regionEnName; + } + + public void setRegionEnName(String regionEnName) { + this.regionEnName = regionEnName; + if(regionEnName != null){ + putQueryParameter("RegionEnName", regionEnName); + } + } + + public String getApproveProduct2() { + return this.approveProduct2; + } + + public void setApproveProduct2(String approveProduct2) { + this.approveProduct2 = approveProduct2; + if(approveProduct2 != null){ + putQueryParameter("ApproveProduct2", approveProduct2); + } + } + + public List getProduct2List() { + return this.product2List; + } + + public void setProduct2List(List product2List) { + this.product2List = product2List; + if (product2List != null) { + putQueryParameter("Product2List" , new Gson().toJson(product2List)); + } + } + + public List getOutIds() { + return this.outIds; + } + + public void setOutIds(List outIds) { + this.outIds = outIds; + if (outIds != null) { + putQueryParameter("OutIds" , new Gson().toJson(outIds)); + } + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + if(region != null){ + putQueryParameter("Region", region); + } + } + + public String getSubordinateIndustryLine() { + return this.subordinateIndustryLine; + } + + public void setSubordinateIndustryLine(String subordinateIndustryLine) { + this.subordinateIndustryLine = subordinateIndustryLine; + if(subordinateIndustryLine != null){ + putQueryParameter("SubordinateIndustryLine", subordinateIndustryLine); + } + } + + public List getOrgNames() { + return this.orgNames; + } + + public void setOrgNames(List orgNames) { + this.orgNames = orgNames; + if (orgNames != null) { + putQueryParameter("OrgNames" , new Gson().toJson(orgNames)); + } + } + + public List getExclusiveStatusList() { + return this.exclusiveStatusList; + } + + public void setExclusiveStatusList(List exclusiveStatusList) { + this.exclusiveStatusList = exclusiveStatusList; + if (exclusiveStatusList != null) { + putQueryParameter("ExclusiveStatusList" , new Gson().toJson(exclusiveStatusList)); + } + } + + public List getProduct3List() { + return this.product3List; + } + + public void setProduct3List(List product3List) { + this.product3List = product3List; + if (product3List != null) { + putQueryParameter("Product3List" , new Gson().toJson(product3List)); + } + } + + public List getOriginIds() { + return this.originIds; + } + + public void setOriginIds(List originIds) { + this.originIds = originIds; + if (originIds != null) { + putQueryParameter("OriginIds" , new Gson().toJson(originIds)); + } + } + + public Boolean getPureAllocate() { + return this.pureAllocate; + } + + public void setPureAllocate(Boolean pureAllocate) { + this.pureAllocate = pureAllocate; + if(pureAllocate != null){ + putQueryParameter("PureAllocate", pureAllocate.toString()); + } + } + + public String getUpdater() { + return this.updater; + } + + public void setUpdater(String updater) { + this.updater = updater; + if(updater != null){ + putQueryParameter("Updater", updater); + } + } + + public Integer getVersionId() { + return this.versionId; + } + + public void setVersionId(Integer versionId) { + this.versionId = versionId; + if(versionId != null){ + putQueryParameter("VersionId", versionId.toString()); + } + } + + public String getChannelType() { + return this.channelType; + } + + public void setChannelType(String channelType) { + this.channelType = channelType; + if(channelType != null){ + putQueryParameter("ChannelType", channelType); + } + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + if(projectType != null){ + putQueryParameter("ProjectType", projectType); + } + } + + public String getCountryType() { + return this.countryType; + } + + public void setCountryType(String countryType) { + this.countryType = countryType; + if(countryType != null){ + putQueryParameter("CountryType", countryType); + } + } + + public String getProductSu() { + return this.productSu; + } + + public void setProductSu(String productSu) { + this.productSu = productSu; + if(productSu != null){ + putQueryParameter("ProductSu", productSu); + } + } + + public String getProductCluster() { + return this.productCluster; + } + + public void setProductCluster(String productCluster) { + this.productCluster = productCluster; + if(productCluster != null){ + putQueryParameter("ProductCluster", productCluster); + } + } + + public Boolean getRobotOrHuman() { + return this.robotOrHuman; + } + + public void setRobotOrHuman(Boolean robotOrHuman) { + this.robotOrHuman = robotOrHuman; + if(robotOrHuman != null){ + putQueryParameter("RobotOrHuman", robotOrHuman.toString()); + } + } + + public Integer getRdsRoomType() { + return this.rdsRoomType; + } + + public void setRdsRoomType(Integer rdsRoomType) { + this.rdsRoomType = rdsRoomType; + if(rdsRoomType != null){ + putQueryParameter("RdsRoomType", rdsRoomType.toString()); + } + } + + public Boolean getCntEffective() { + return this.cntEffective; + } + + public void setCntEffective(Boolean cntEffective) { + this.cntEffective = cntEffective; + if(cntEffective != null){ + putQueryParameter("CntEffective", cntEffective.toString()); + } + } + + public String getWorkNo() { + return this.workNo; + } + + public void setWorkNo(String workNo) { + this.workNo = workNo; + if(workNo != null){ + putQueryParameter("WorkNo", workNo); + } + } + + public Integer getClickNewReverse() { + return this.clickNewReverse; + } + + public void setClickNewReverse(Integer clickNewReverse) { + this.clickNewReverse = clickNewReverse; + if(clickNewReverse != null){ + putQueryParameter("ClickNewReverse", clickNewReverse.toString()); + } + } + + public List getSourceList() { + return this.sourceList; + } + + public void setSourceList(List sourceList) { + this.sourceList = sourceList; + if (sourceList != null) { + putQueryParameter("SourceList" , new Gson().toJson(sourceList)); + } + } + + public List getRegionList() { + return this.regionList; + } + + public void setRegionList(List regionList) { + this.regionList = regionList; + if (regionList != null) { + putQueryParameter("RegionList" , new Gson().toJson(regionList)); + } + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + if(roomCode != null){ + putQueryParameter("RoomCode", roomCode); + } + } + + public List getLadingStatusList() { + return this.ladingStatusList; + } + + public void setLadingStatusList(List ladingStatusList) { + this.ladingStatusList = ladingStatusList; + if (ladingStatusList != null) { + putQueryParameter("LadingStatusList" , new Gson().toJson(ladingStatusList)); + } + } + + public Integer getApplyType() { + return this.applyType; + } + + public void setApplyType(Integer applyType) { + this.applyType = applyType; + if(applyType != null){ + putQueryParameter("ApplyType", applyType.toString()); + } + } + + @Override + public Class getResponseClass() { + return GetPlanListWithReverseResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListWithReverseResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListWithReverseResponse.java new file mode 100644 index 0000000000..6990a78274 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetPlanListWithReverseResponse.java @@ -0,0 +1,1756 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetPlanListWithReverseResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetPlanListWithReverseResponse extends AcsResponse { + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private Result result; + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Result getResult() { + return this.result; + } + + public void setResult(Result result) { + this.result = result; + } + + public static class Result { + + private Long currentPage; + + private Long pageCount; + + private Long pageSize; + + private Long totalCount; + + private List dataList; + + public Long getCurrentPage() { + return this.currentPage; + } + + public void setCurrentPage(Long currentPage) { + this.currentPage = currentPage; + } + + public Long getPageCount() { + return this.pageCount; + } + + public void setPageCount(Long pageCount) { + this.pageCount = pageCount; + } + + public Long getPageSize() { + return this.pageSize; + } + + public void setPageSize(Long pageSize) { + this.pageSize = pageSize; + } + + public Long getTotalCount() { + return this.totalCount; + } + + public void setTotalCount(Long totalCount) { + this.totalCount = totalCount; + } + + public List getDataList() { + return this.dataList; + } + + public void setDataList(List dataList) { + this.dataList = dataList; + } + + public static class DataListItem { + + private String agreement; + + private Long appGroupId; + + private String appGroupName; + + private String assetReceiver; + + private String assetReceiverNick; + + private String azone; + + private Integer benefitOld; + + private String business; + + private String businessMode; + + private String businessModeName; + + private String businessName; + + private String cbmDemander; + + private String classZoneCode; + + private String classZoneName; + + private String cloudDeployProduct1Name; + + private String cloudDeployProduct2Name; + + private String cloudDeployProduct3; + + private String cloudDeployProduct3Name; + + private String cmC; + + private String cmP; + + private String cmU; + + private String cmV; + + private Long cnt; + + private String comment; + + private String creator; + + private String creatorNic; + + private Long deliveryAmount; + + private Long expireDate; + + private Long highCnt; + + private Long id; + + private Long install; + + private Long installId; + + private String installName; + + private Long ladingStatus; + + private String logicZoneCode; + + private String logicZoneName; + + private String machineType; + + private Long manufacturerBrand; + + private String manufacturerBrandName; + + private Integer modelLoad; + + private String msg; + + private Long nakedDelivery; + + private String netArch; + + private String nic; + + private String orgKey; + + private Long osId; + + private String osName; + + private String outId; + + private Long pickAmount; + + private Long planType; + + private String priority; + + private String processId; + + private String product1; + + private String product1Name; + + private String product2; + + private String product2Name; + + private String product3; + + private String product3Name; + + private String projectCode; + + private String projectName; + + private String projectType; + + private String projectTypeName; + + private Long quotaPlanId; + + private String region; + + private String requireType; + + private String requireTypeName; + + private String roomCode; + + private String safeYear; + + private String safeZoneCode; + + private String safeZoneName; + + private String scenario; + + private String source; + + private Long status; + + private String subLine; + + private String subLineName; + + private Integer success; + + private Long time; + + private List splitDataList; + + public String getAgreement() { + return this.agreement; + } + + public void setAgreement(String agreement) { + this.agreement = agreement; + } + + public Long getAppGroupId() { + return this.appGroupId; + } + + public void setAppGroupId(Long appGroupId) { + this.appGroupId = appGroupId; + } + + public String getAppGroupName() { + return this.appGroupName; + } + + public void setAppGroupName(String appGroupName) { + this.appGroupName = appGroupName; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public String getBusinessModeName() { + return this.businessModeName; + } + + public void setBusinessModeName(String businessModeName) { + this.businessModeName = businessModeName; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public String getCbmDemander() { + return this.cbmDemander; + } + + public void setCbmDemander(String cbmDemander) { + this.cbmDemander = cbmDemander; + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public String getCloudDeployProduct1Name() { + return this.cloudDeployProduct1Name; + } + + public void setCloudDeployProduct1Name(String cloudDeployProduct1Name) { + this.cloudDeployProduct1Name = cloudDeployProduct1Name; + } + + public String getCloudDeployProduct2Name() { + return this.cloudDeployProduct2Name; + } + + public void setCloudDeployProduct2Name(String cloudDeployProduct2Name) { + this.cloudDeployProduct2Name = cloudDeployProduct2Name; + } + + public String getCloudDeployProduct3() { + return this.cloudDeployProduct3; + } + + public void setCloudDeployProduct3(String cloudDeployProduct3) { + this.cloudDeployProduct3 = cloudDeployProduct3; + } + + public String getCloudDeployProduct3Name() { + return this.cloudDeployProduct3Name; + } + + public void setCloudDeployProduct3Name(String cloudDeployProduct3Name) { + this.cloudDeployProduct3Name = cloudDeployProduct3Name; + } + + public String getCmC() { + return this.cmC; + } + + public void setCmC(String cmC) { + this.cmC = cmC; + } + + public String getCmP() { + return this.cmP; + } + + public void setCmP(String cmP) { + this.cmP = cmP; + } + + public String getCmU() { + return this.cmU; + } + + public void setCmU(String cmU) { + this.cmU = cmU; + } + + public String getCmV() { + return this.cmV; + } + + public void setCmV(String cmV) { + this.cmV = cmV; + } + + public Long getCnt() { + return this.cnt; + } + + public void setCnt(Long cnt) { + this.cnt = cnt; + } + + public String getComment() { + return this.comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public Long getDeliveryAmount() { + return this.deliveryAmount; + } + + public void setDeliveryAmount(Long deliveryAmount) { + this.deliveryAmount = deliveryAmount; + } + + public Long getExpireDate() { + return this.expireDate; + } + + public void setExpireDate(Long expireDate) { + this.expireDate = expireDate; + } + + public Long getHighCnt() { + return this.highCnt; + } + + public void setHighCnt(Long highCnt) { + this.highCnt = highCnt; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getInstall() { + return this.install; + } + + public void setInstall(Long install) { + this.install = install; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public Long getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Long ladingStatus) { + this.ladingStatus = ladingStatus; + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + } + + public String getLogicZoneName() { + return this.logicZoneName; + } + + public void setLogicZoneName(String logicZoneName) { + this.logicZoneName = logicZoneName; + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + } + + public Long getManufacturerBrand() { + return this.manufacturerBrand; + } + + public void setManufacturerBrand(Long manufacturerBrand) { + this.manufacturerBrand = manufacturerBrand; + } + + public String getManufacturerBrandName() { + return this.manufacturerBrandName; + } + + public void setManufacturerBrandName(String manufacturerBrandName) { + this.manufacturerBrandName = manufacturerBrandName; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public String getMsg() { + return this.msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public Long getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Long nakedDelivery) { + this.nakedDelivery = nakedDelivery; + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getOrgKey() { + return this.orgKey; + } + + public void setOrgKey(String orgKey) { + this.orgKey = orgKey; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getOutId() { + return this.outId; + } + + public void setOutId(String outId) { + this.outId = outId; + } + + public Long getPickAmount() { + return this.pickAmount; + } + + public void setPickAmount(Long pickAmount) { + this.pickAmount = pickAmount; + } + + public Long getPlanType() { + return this.planType; + } + + public void setPlanType(Long planType) { + this.planType = planType; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public Long getQuotaPlanId() { + return this.quotaPlanId; + } + + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + } + + public String getSafeZoneName() { + return this.safeZoneName; + } + + public void setSafeZoneName(String safeZoneName) { + this.safeZoneName = safeZoneName; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public Long getStatus() { + return this.status; + } + + public void setStatus(Long status) { + this.status = status; + } + + public String getSubLine() { + return this.subLine; + } + + public void setSubLine(String subLine) { + this.subLine = subLine; + } + + public String getSubLineName() { + return this.subLineName; + } + + public void setSubLineName(String subLineName) { + this.subLineName = subLineName; + } + + public Integer getSuccess() { + return this.success; + } + + public void setSuccess(Integer success) { + this.success = success; + } + + public Long getTime() { + return this.time; + } + + public void setTime(Long time) { + this.time = time; + } + + public List getSplitDataList() { + return this.splitDataList; + } + + public void setSplitDataList(List splitDataList) { + this.splitDataList = splitDataList; + } + + public static class SplitDataListItem { + + private String addStatus; + + private Long appGroupId; + + private String appGroupName; + + private String assetReceiver; + + private String assetReceiverNick; + + private String azone; + + private Long benefitOld; + + private String business; + + private String businessMode; + + private String businessModeName; + + private String businessName; + + private String cbmDemander; + + private String classZoneCode; + + private String classZoneName; + + private String cloudDeployProduct1Name; + + private String cloudDeployProduct2Name; + + private String cloudDeployProduct3; + + private String cloudDeployProduct3Name; + + private String cmC; + + private String cmP; + + private String cmU; + + private String cmV; + + private Long cnt; + + private String comment; + + private String country; + + private String creator; + + private String creatorNic; + + private String dcosStatus; + + private Long demandStatus; + + private String error; + + private Long gmtCreate; + + private Long gmtModified; + + private Integer highCnt; + + private Long id; + + private Integer install; + + private Long installId; + + private String installName; + + private Long ladingStatus; + + private String logicZoneCode; + + private String logicZoneName; + + private String machineType; + + private Long manufacturerBrand; + + private String manufacturerBrandName; + + private Integer modelLoad; + + private Long nakedDelivery; + + private String netArch; + + private Long newPlanId; + + private String nic; + + private String org; + + private Long originId; + + private Long osId; + + private String osName; + + private String outId; + + private String planChangeReason; + + private Long planType; + + private String priority; + + private String processId; + + private String product1; + + private String product1Name; + + private String product2; + + private String product2Name; + + private String product3; + + private String product3Name; + + private String projectCode; + + private String projectName; + + private String projectType; + + private String projectTypeName; + + private Long quotaPlanId; + + private String region; + + private String requireType; + + private String requireTypeName; + + private String reverseStatus; + + private String reverseType; + + private String roomCode; + + private String safeYear; + + private String safeZoneCode; + + private String safeZoneName; + + private String scStatus; + + private String scenario; + + private String stockStatus; + + private String subLine; + + private String subLineName; + + private Long time; + + public String getAddStatus() { + return this.addStatus; + } + + public void setAddStatus(String addStatus) { + this.addStatus = addStatus; + } + + public Long getAppGroupId() { + return this.appGroupId; + } + + public void setAppGroupId(Long appGroupId) { + this.appGroupId = appGroupId; + } + + public String getAppGroupName() { + return this.appGroupName; + } + + public void setAppGroupName(String appGroupName) { + this.appGroupName = appGroupName; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public Long getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Long benefitOld) { + this.benefitOld = benefitOld; + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public String getBusinessModeName() { + return this.businessModeName; + } + + public void setBusinessModeName(String businessModeName) { + this.businessModeName = businessModeName; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public String getCbmDemander() { + return this.cbmDemander; + } + + public void setCbmDemander(String cbmDemander) { + this.cbmDemander = cbmDemander; + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public String getCloudDeployProduct1Name() { + return this.cloudDeployProduct1Name; + } + + public void setCloudDeployProduct1Name(String cloudDeployProduct1Name) { + this.cloudDeployProduct1Name = cloudDeployProduct1Name; + } + + public String getCloudDeployProduct2Name() { + return this.cloudDeployProduct2Name; + } + + public void setCloudDeployProduct2Name(String cloudDeployProduct2Name) { + this.cloudDeployProduct2Name = cloudDeployProduct2Name; + } + + public String getCloudDeployProduct3() { + return this.cloudDeployProduct3; + } + + public void setCloudDeployProduct3(String cloudDeployProduct3) { + this.cloudDeployProduct3 = cloudDeployProduct3; + } + + public String getCloudDeployProduct3Name() { + return this.cloudDeployProduct3Name; + } + + public void setCloudDeployProduct3Name(String cloudDeployProduct3Name) { + this.cloudDeployProduct3Name = cloudDeployProduct3Name; + } + + public String getCmC() { + return this.cmC; + } + + public void setCmC(String cmC) { + this.cmC = cmC; + } + + public String getCmP() { + return this.cmP; + } + + public void setCmP(String cmP) { + this.cmP = cmP; + } + + public String getCmU() { + return this.cmU; + } + + public void setCmU(String cmU) { + this.cmU = cmU; + } + + public String getCmV() { + return this.cmV; + } + + public void setCmV(String cmV) { + this.cmV = cmV; + } + + public Long getCnt() { + return this.cnt; + } + + public void setCnt(Long cnt) { + this.cnt = cnt; + } + + public String getComment() { + return this.comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public String getDcosStatus() { + return this.dcosStatus; + } + + public void setDcosStatus(String dcosStatus) { + this.dcosStatus = dcosStatus; + } + + public Long getDemandStatus() { + return this.demandStatus; + } + + public void setDemandStatus(Long demandStatus) { + this.demandStatus = demandStatus; + } + + public String getError() { + return this.error; + } + + public void setError(String error) { + this.error = error; + } + + public Long getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(Long gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public Long getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(Long gmtModified) { + this.gmtModified = gmtModified; + } + + public Integer getHighCnt() { + return this.highCnt; + } + + public void setHighCnt(Integer highCnt) { + this.highCnt = highCnt; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public Integer getInstall() { + return this.install; + } + + public void setInstall(Integer install) { + this.install = install; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public Long getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Long ladingStatus) { + this.ladingStatus = ladingStatus; + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + } + + public String getLogicZoneName() { + return this.logicZoneName; + } + + public void setLogicZoneName(String logicZoneName) { + this.logicZoneName = logicZoneName; + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + } + + public Long getManufacturerBrand() { + return this.manufacturerBrand; + } + + public void setManufacturerBrand(Long manufacturerBrand) { + this.manufacturerBrand = manufacturerBrand; + } + + public String getManufacturerBrandName() { + return this.manufacturerBrandName; + } + + public void setManufacturerBrandName(String manufacturerBrandName) { + this.manufacturerBrandName = manufacturerBrandName; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public Long getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Long nakedDelivery) { + this.nakedDelivery = nakedDelivery; + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public Long getNewPlanId() { + return this.newPlanId; + } + + public void setNewPlanId(Long newPlanId) { + this.newPlanId = newPlanId; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public Long getOriginId() { + return this.originId; + } + + public void setOriginId(Long originId) { + this.originId = originId; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getOutId() { + return this.outId; + } + + public void setOutId(String outId) { + this.outId = outId; + } + + public String getPlanChangeReason() { + return this.planChangeReason; + } + + public void setPlanChangeReason(String planChangeReason) { + this.planChangeReason = planChangeReason; + } + + public Long getPlanType() { + return this.planType; + } + + public void setPlanType(Long planType) { + this.planType = planType; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public Long getQuotaPlanId() { + return this.quotaPlanId; + } + + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getReverseStatus() { + return this.reverseStatus; + } + + public void setReverseStatus(String reverseStatus) { + this.reverseStatus = reverseStatus; + } + + public String getReverseType() { + return this.reverseType; + } + + public void setReverseType(String reverseType) { + this.reverseType = reverseType; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + } + + public String getSafeZoneName() { + return this.safeZoneName; + } + + public void setSafeZoneName(String safeZoneName) { + this.safeZoneName = safeZoneName; + } + + public String getScStatus() { + return this.scStatus; + } + + public void setScStatus(String scStatus) { + this.scStatus = scStatus; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public String getStockStatus() { + return this.stockStatus; + } + + public void setStockStatus(String stockStatus) { + this.stockStatus = stockStatus; + } + + public String getSubLine() { + return this.subLine; + } + + public void setSubLine(String subLine) { + this.subLine = subLine; + } + + public String getSubLineName() { + return this.subLineName; + } + + public void setSubLineName(String subLineName) { + this.subLineName = subLineName; + } + + public Long getTime() { + return this.time; + } + + public void setTime(Long time) { + this.time = time; + } + } + } + } + + @Override + public GetPlanListWithReverseResponse getInstance(UnmarshallerContext context) { + return GetPlanListWithReverseResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetProjectTypeByCodeRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetProjectTypeByCodeRequest.java new file mode 100644 index 0000000000..038fd117f6 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetProjectTypeByCodeRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetProjectTypeByCodeRequest extends RpcAcsRequest { + + + private String projectType; + public GetProjectTypeByCodeRequest() { + super("brinekingdom", "2019-06-27", "GetProjectTypeByCode"); + setMethod(MethodType.POST); + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + if(projectType != null){ + putQueryParameter("ProjectType", projectType); + } + } + + @Override + public Class getResponseClass() { + return GetProjectTypeByCodeResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetProjectTypeByCodeResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetProjectTypeByCodeResponse.java new file mode 100644 index 0000000000..8ccea6b14e --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetProjectTypeByCodeResponse.java @@ -0,0 +1,139 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetProjectTypeByCodeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetProjectTypeByCodeResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private Result result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Result getResult() { + return this.result; + } + + public void setResult(Result result) { + this.result = result; + } + + public static class Result { + + private String _class; + + private Long id; + + private String projectType; + + private String projectTypeName; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + } + + @Override + public GetProjectTypeByCodeResponse getInstance(UnmarshallerContext context) { + return GetProjectTypeByCodeResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSecondaryProdByPrimaryProdRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSecondaryProdByPrimaryProdRequest.java new file mode 100644 index 0000000000..380a56ed09 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSecondaryProdByPrimaryProdRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetSecondaryProdByPrimaryProdRequest extends RpcAcsRequest { + + + private String productLine; + public GetSecondaryProdByPrimaryProdRequest() { + super("brinekingdom", "2019-06-27", "GetSecondaryProdByPrimaryProd"); + setMethod(MethodType.POST); + } + + public String getProductLine() { + return this.productLine; + } + + public void setProductLine(String productLine) { + this.productLine = productLine; + if(productLine != null){ + putQueryParameter("ProductLine", productLine); + } + } + + @Override + public Class getResponseClass() { + return GetSecondaryProdByPrimaryProdResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSecondaryProdByPrimaryProdResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSecondaryProdByPrimaryProdResponse.java new file mode 100644 index 0000000000..cccb8136f0 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSecondaryProdByPrimaryProdResponse.java @@ -0,0 +1,200 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetSecondaryProdByPrimaryProdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetSecondaryProdByPrimaryProdResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String aoneId; + + private String aoneName; + + private String _class; + + private String productClass; + + private String productClassCN; + + private String productCode; + + private String productEnName; + + private String productLineCN; + + private String productLineEN; + + private String productName; + + public String getAoneId() { + return this.aoneId; + } + + public void setAoneId(String aoneId) { + this.aoneId = aoneId; + } + + public String getAoneName() { + return this.aoneName; + } + + public void setAoneName(String aoneName) { + this.aoneName = aoneName; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getProductClass() { + return this.productClass; + } + + public void setProductClass(String productClass) { + this.productClass = productClass; + } + + public String getProductClassCN() { + return this.productClassCN; + } + + public void setProductClassCN(String productClassCN) { + this.productClassCN = productClassCN; + } + + public String getProductCode() { + return this.productCode; + } + + public void setProductCode(String productCode) { + this.productCode = productCode; + } + + public String getProductEnName() { + return this.productEnName; + } + + public void setProductEnName(String productEnName) { + this.productEnName = productEnName; + } + + public String getProductLineCN() { + return this.productLineCN; + } + + public void setProductLineCN(String productLineCN) { + this.productLineCN = productLineCN; + } + + public String getProductLineEN() { + return this.productLineEN; + } + + public void setProductLineEN(String productLineEN) { + this.productLineEN = productLineEN; + } + + public String getProductName() { + return this.productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + } + + @Override + public GetSecondaryProdByPrimaryProdResponse getInstance(UnmarshallerContext context) { + return GetSecondaryProdByPrimaryProdResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSolutionListRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSolutionListRequest.java new file mode 100644 index 0000000000..6a782ad6c6 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSolutionListRequest.java @@ -0,0 +1,53 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetSolutionListRequest extends RpcAcsRequest { + + + @SerializedName("consistentIdList") + private List consistentIdList; + public GetSolutionListRequest() { + super("brinekingdom", "2019-06-27", "GetSolutionList"); + setMethod(MethodType.POST); + } + + public List getConsistentIdList() { + return this.consistentIdList; + } + + public void setConsistentIdList(List consistentIdList) { + this.consistentIdList = consistentIdList; + if (consistentIdList != null) { + putQueryParameter("ConsistentIdList" , new Gson().toJson(consistentIdList)); + } + } + + @Override + public Class getResponseClass() { + return GetSolutionListResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSolutionListResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSolutionListResponse.java new file mode 100644 index 0000000000..bbb8e386a7 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetSolutionListResponse.java @@ -0,0 +1,2232 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import java.util.Map; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetSolutionListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetSolutionListResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private String requestId; + + private List result; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String ascriptionClassName; + + private String deployProduct2Name; + + private Long dcsId; + + private String dataError; + + private String itemType; + + private Long ukUseId; + + private Integer matchCnt; + + private String orgName; + + private String businessMode; + + private String brandName; + + private String item; + + private Boolean factoryInstall; + + private String requireType; + + private Integer modelLoad; + + private Integer serverAssignCnt; + + private Long osId; + + private Long consistentId; + + private Integer ladingProcessQty; + + private Long quotaPlanId; + + private String deliveryType; + + private Boolean dataFlag; + + private String projectTypeName; + + private String status; + + private String cbmOwner; + + private String productType; + + private String product3Name; + + private String scenario; + + private String networkArch; + + private String uid; + + private Long gmtCreate; + + private String scPlanIds; + + private Integer supplyQty; + + private Long id; + + private String assetReceiverNick; + + private Integer useCapacityCnt; + + private String orders; + + private String product3; + + private String product1; + + private String projectName; + + private String product2; + + private String sourceId; + + private String product1Name; + + private Integer moveExecuteQty; + + private Integer useL2PoolCnt; + + private String ascriptionClass; + + private String expectTurnOverDateStr; + + private String deployProduct1; + + private String dcsSource; + + private String deployProduct3; + + private String deployProduct2; + + private Integer moveQty; + + private String usePoolMoveDetail; + + private String logicZone; + + private String supplyArea; + + private String manufacturingBrandCode; + + private Boolean executeFlag; + + private String demandClass; + + private Integer moveDeliveredQty; + + private String tenantId; + + private String deployProduct3Name; + + private Boolean autoExecute; + + private Integer demandQty; + + private String businessType; + + private String idc; + + private String brandCode; + + private String creator; + + private Long brandId; + + private String installName; + + private String evaluateStatus; + + private Long manufacturingBrandId; + + private String safeYear; + + private String moveOrders; + + private String supplyLevel; + + private String requireTypeName; + + private String configModel; + + private String updater; + + private Long expectTurnOverDate; + + private String supplyType; + + private String deployProduct1Name; + + private Boolean install; + + private Integer useSupplyCnt; + + private String azone; + + private Integer purchaseCnt; + + private String shiftMethod; + + private Integer benefitOld; + + private String industryLine; + + private String purchaseOrders; + + private String fcstId; + + private String priority; + + private Integer usePlanCnt; + + private Integer rackAssignCnt; + + private String assignVersion; + + private String featureStr; + + private String executeError; + + private String assetReceiver; + + private Integer usePoolInPlaceCnt; + + private String sectionRackStatus; + + private String projectType; + + private String region; + + private Long sectionRackAvailableDate; + + private String dcsSourceId; + + private String operator; + + private String classZone; + + private String org; + + private String manualBrandName; + + private Long gmtModified; + + private String classZoneName; + + private String replenishUnit; + + private String source; + + private String product2Name; + + private Integer executeQty; + + private String usePoolInPlaceDetail; + + private Integer supplyDeliveredQty; + + private Map features; + + private String projectCode; + + private Long installId; + + private Integer sectionRackAssignCnt; + + private Integer usePoolMoveCnt; + + private String appGroup; + + private String comments; + + private Integer usePoolCnt; + + private String osName; + + private String cluster; + + private Boolean ableExecute; + + private String usePoolDetail; + + private String businessTypeName; + + private Long useSupplyDate; + + private String preExecuteRequest; + + private String safeZone; + + private List rackInfo; + + private DemandDeploy demandDeploy; + + private DemandItem demandItem; + + public String getAscriptionClassName() { + return this.ascriptionClassName; + } + + public void setAscriptionClassName(String ascriptionClassName) { + this.ascriptionClassName = ascriptionClassName; + } + + public String getDeployProduct2Name() { + return this.deployProduct2Name; + } + + public void setDeployProduct2Name(String deployProduct2Name) { + this.deployProduct2Name = deployProduct2Name; + } + + public Long getDcsId() { + return this.dcsId; + } + + public void setDcsId(Long dcsId) { + this.dcsId = dcsId; + } + + public String getDataError() { + return this.dataError; + } + + public void setDataError(String dataError) { + this.dataError = dataError; + } + + public String getItemType() { + return this.itemType; + } + + public void setItemType(String itemType) { + this.itemType = itemType; + } + + public Long getUkUseId() { + return this.ukUseId; + } + + public void setUkUseId(Long ukUseId) { + this.ukUseId = ukUseId; + } + + public Integer getMatchCnt() { + return this.matchCnt; + } + + public void setMatchCnt(Integer matchCnt) { + this.matchCnt = matchCnt; + } + + public String getOrgName() { + return this.orgName; + } + + public void setOrgName(String orgName) { + this.orgName = orgName; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public String getBrandName() { + return this.brandName; + } + + public void setBrandName(String brandName) { + this.brandName = brandName; + } + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Boolean getFactoryInstall() { + return this.factoryInstall; + } + + public void setFactoryInstall(Boolean factoryInstall) { + this.factoryInstall = factoryInstall; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public Integer getServerAssignCnt() { + return this.serverAssignCnt; + } + + public void setServerAssignCnt(Integer serverAssignCnt) { + this.serverAssignCnt = serverAssignCnt; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public Long getConsistentId() { + return this.consistentId; + } + + public void setConsistentId(Long consistentId) { + this.consistentId = consistentId; + } + + public Integer getLadingProcessQty() { + return this.ladingProcessQty; + } + + public void setLadingProcessQty(Integer ladingProcessQty) { + this.ladingProcessQty = ladingProcessQty; + } + + public Long getQuotaPlanId() { + return this.quotaPlanId; + } + + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public String getDeliveryType() { + return this.deliveryType; + } + + public void setDeliveryType(String deliveryType) { + this.deliveryType = deliveryType; + } + + public Boolean getDataFlag() { + return this.dataFlag; + } + + public void setDataFlag(Boolean dataFlag) { + this.dataFlag = dataFlag; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public String getStatus() { + return this.status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCbmOwner() { + return this.cbmOwner; + } + + public void setCbmOwner(String cbmOwner) { + this.cbmOwner = cbmOwner; + } + + public String getProductType() { + return this.productType; + } + + public void setProductType(String productType) { + this.productType = productType; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public String getNetworkArch() { + return this.networkArch; + } + + public void setNetworkArch(String networkArch) { + this.networkArch = networkArch; + } + + public String getUid() { + return this.uid; + } + + public void setUid(String uid) { + this.uid = uid; + } + + public Long getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(Long gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getScPlanIds() { + return this.scPlanIds; + } + + public void setScPlanIds(String scPlanIds) { + this.scPlanIds = scPlanIds; + } + + public Integer getSupplyQty() { + return this.supplyQty; + } + + public void setSupplyQty(Integer supplyQty) { + this.supplyQty = supplyQty; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public Integer getUseCapacityCnt() { + return this.useCapacityCnt; + } + + public void setUseCapacityCnt(Integer useCapacityCnt) { + this.useCapacityCnt = useCapacityCnt; + } + + public String getOrders() { + return this.orders; + } + + public void setOrders(String orders) { + this.orders = orders; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public Integer getMoveExecuteQty() { + return this.moveExecuteQty; + } + + public void setMoveExecuteQty(Integer moveExecuteQty) { + this.moveExecuteQty = moveExecuteQty; + } + + public Integer getUseL2PoolCnt() { + return this.useL2PoolCnt; + } + + public void setUseL2PoolCnt(Integer useL2PoolCnt) { + this.useL2PoolCnt = useL2PoolCnt; + } + + public String getAscriptionClass() { + return this.ascriptionClass; + } + + public void setAscriptionClass(String ascriptionClass) { + this.ascriptionClass = ascriptionClass; + } + + public String getExpectTurnOverDateStr() { + return this.expectTurnOverDateStr; + } + + public void setExpectTurnOverDateStr(String expectTurnOverDateStr) { + this.expectTurnOverDateStr = expectTurnOverDateStr; + } + + public String getDeployProduct1() { + return this.deployProduct1; + } + + public void setDeployProduct1(String deployProduct1) { + this.deployProduct1 = deployProduct1; + } + + public String getDcsSource() { + return this.dcsSource; + } + + public void setDcsSource(String dcsSource) { + this.dcsSource = dcsSource; + } + + public String getDeployProduct3() { + return this.deployProduct3; + } + + public void setDeployProduct3(String deployProduct3) { + this.deployProduct3 = deployProduct3; + } + + public String getDeployProduct2() { + return this.deployProduct2; + } + + public void setDeployProduct2(String deployProduct2) { + this.deployProduct2 = deployProduct2; + } + + public Integer getMoveQty() { + return this.moveQty; + } + + public void setMoveQty(Integer moveQty) { + this.moveQty = moveQty; + } + + public String getUsePoolMoveDetail() { + return this.usePoolMoveDetail; + } + + public void setUsePoolMoveDetail(String usePoolMoveDetail) { + this.usePoolMoveDetail = usePoolMoveDetail; + } + + public String getLogicZone() { + return this.logicZone; + } + + public void setLogicZone(String logicZone) { + this.logicZone = logicZone; + } + + public String getSupplyArea() { + return this.supplyArea; + } + + public void setSupplyArea(String supplyArea) { + this.supplyArea = supplyArea; + } + + public String getManufacturingBrandCode() { + return this.manufacturingBrandCode; + } + + public void setManufacturingBrandCode(String manufacturingBrandCode) { + this.manufacturingBrandCode = manufacturingBrandCode; + } + + public Boolean getExecuteFlag() { + return this.executeFlag; + } + + public void setExecuteFlag(Boolean executeFlag) { + this.executeFlag = executeFlag; + } + + public String getDemandClass() { + return this.demandClass; + } + + public void setDemandClass(String demandClass) { + this.demandClass = demandClass; + } + + public Integer getMoveDeliveredQty() { + return this.moveDeliveredQty; + } + + public void setMoveDeliveredQty(Integer moveDeliveredQty) { + this.moveDeliveredQty = moveDeliveredQty; + } + + public String getTenantId() { + return this.tenantId; + } + + public void setTenantId(String tenantId) { + this.tenantId = tenantId; + } + + public String getDeployProduct3Name() { + return this.deployProduct3Name; + } + + public void setDeployProduct3Name(String deployProduct3Name) { + this.deployProduct3Name = deployProduct3Name; + } + + public Boolean getAutoExecute() { + return this.autoExecute; + } + + public void setAutoExecute(Boolean autoExecute) { + this.autoExecute = autoExecute; + } + + public Integer getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Integer demandQty) { + this.demandQty = demandQty; + } + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + + public String getBrandCode() { + return this.brandCode; + } + + public void setBrandCode(String brandCode) { + this.brandCode = brandCode; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public Long getBrandId() { + return this.brandId; + } + + public void setBrandId(Long brandId) { + this.brandId = brandId; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public String getEvaluateStatus() { + return this.evaluateStatus; + } + + public void setEvaluateStatus(String evaluateStatus) { + this.evaluateStatus = evaluateStatus; + } + + public Long getManufacturingBrandId() { + return this.manufacturingBrandId; + } + + public void setManufacturingBrandId(Long manufacturingBrandId) { + this.manufacturingBrandId = manufacturingBrandId; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getMoveOrders() { + return this.moveOrders; + } + + public void setMoveOrders(String moveOrders) { + this.moveOrders = moveOrders; + } + + public String getSupplyLevel() { + return this.supplyLevel; + } + + public void setSupplyLevel(String supplyLevel) { + this.supplyLevel = supplyLevel; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getConfigModel() { + return this.configModel; + } + + public void setConfigModel(String configModel) { + this.configModel = configModel; + } + + public String getUpdater() { + return this.updater; + } + + public void setUpdater(String updater) { + this.updater = updater; + } + + public Long getExpectTurnOverDate() { + return this.expectTurnOverDate; + } + + public void setExpectTurnOverDate(Long expectTurnOverDate) { + this.expectTurnOverDate = expectTurnOverDate; + } + + public String getSupplyType() { + return this.supplyType; + } + + public void setSupplyType(String supplyType) { + this.supplyType = supplyType; + } + + public String getDeployProduct1Name() { + return this.deployProduct1Name; + } + + public void setDeployProduct1Name(String deployProduct1Name) { + this.deployProduct1Name = deployProduct1Name; + } + + public Boolean getInstall() { + return this.install; + } + + public void setInstall(Boolean install) { + this.install = install; + } + + public Integer getUseSupplyCnt() { + return this.useSupplyCnt; + } + + public void setUseSupplyCnt(Integer useSupplyCnt) { + this.useSupplyCnt = useSupplyCnt; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public Integer getPurchaseCnt() { + return this.purchaseCnt; + } + + public void setPurchaseCnt(Integer purchaseCnt) { + this.purchaseCnt = purchaseCnt; + } + + public String getShiftMethod() { + return this.shiftMethod; + } + + public void setShiftMethod(String shiftMethod) { + this.shiftMethod = shiftMethod; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getIndustryLine() { + return this.industryLine; + } + + public void setIndustryLine(String industryLine) { + this.industryLine = industryLine; + } + + public String getPurchaseOrders() { + return this.purchaseOrders; + } + + public void setPurchaseOrders(String purchaseOrders) { + this.purchaseOrders = purchaseOrders; + } + + public String getFcstId() { + return this.fcstId; + } + + public void setFcstId(String fcstId) { + this.fcstId = fcstId; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Integer getUsePlanCnt() { + return this.usePlanCnt; + } + + public void setUsePlanCnt(Integer usePlanCnt) { + this.usePlanCnt = usePlanCnt; + } + + public Integer getRackAssignCnt() { + return this.rackAssignCnt; + } + + public void setRackAssignCnt(Integer rackAssignCnt) { + this.rackAssignCnt = rackAssignCnt; + } + + public String getAssignVersion() { + return this.assignVersion; + } + + public void setAssignVersion(String assignVersion) { + this.assignVersion = assignVersion; + } + + public String getFeatureStr() { + return this.featureStr; + } + + public void setFeatureStr(String featureStr) { + this.featureStr = featureStr; + } + + public String getExecuteError() { + return this.executeError; + } + + public void setExecuteError(String executeError) { + this.executeError = executeError; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public Integer getUsePoolInPlaceCnt() { + return this.usePoolInPlaceCnt; + } + + public void setUsePoolInPlaceCnt(Integer usePoolInPlaceCnt) { + this.usePoolInPlaceCnt = usePoolInPlaceCnt; + } + + public String getSectionRackStatus() { + return this.sectionRackStatus; + } + + public void setSectionRackStatus(String sectionRackStatus) { + this.sectionRackStatus = sectionRackStatus; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public Long getSectionRackAvailableDate() { + return this.sectionRackAvailableDate; + } + + public void setSectionRackAvailableDate(Long sectionRackAvailableDate) { + this.sectionRackAvailableDate = sectionRackAvailableDate; + } + + public String getDcsSourceId() { + return this.dcsSourceId; + } + + public void setDcsSourceId(String dcsSourceId) { + this.dcsSourceId = dcsSourceId; + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + } + + public String getClassZone() { + return this.classZone; + } + + public void setClassZone(String classZone) { + this.classZone = classZone; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public String getManualBrandName() { + return this.manualBrandName; + } + + public void setManualBrandName(String manualBrandName) { + this.manualBrandName = manualBrandName; + } + + public Long getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(Long gmtModified) { + this.gmtModified = gmtModified; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public String getReplenishUnit() { + return this.replenishUnit; + } + + public void setReplenishUnit(String replenishUnit) { + this.replenishUnit = replenishUnit; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public Integer getExecuteQty() { + return this.executeQty; + } + + public void setExecuteQty(Integer executeQty) { + this.executeQty = executeQty; + } + + public String getUsePoolInPlaceDetail() { + return this.usePoolInPlaceDetail; + } + + public void setUsePoolInPlaceDetail(String usePoolInPlaceDetail) { + this.usePoolInPlaceDetail = usePoolInPlaceDetail; + } + + public Integer getSupplyDeliveredQty() { + return this.supplyDeliveredQty; + } + + public void setSupplyDeliveredQty(Integer supplyDeliveredQty) { + this.supplyDeliveredQty = supplyDeliveredQty; + } + + public Map getFeatures() { + return this.features; + } + + public void setFeatures(Map features) { + this.features = features; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public Integer getSectionRackAssignCnt() { + return this.sectionRackAssignCnt; + } + + public void setSectionRackAssignCnt(Integer sectionRackAssignCnt) { + this.sectionRackAssignCnt = sectionRackAssignCnt; + } + + public Integer getUsePoolMoveCnt() { + return this.usePoolMoveCnt; + } + + public void setUsePoolMoveCnt(Integer usePoolMoveCnt) { + this.usePoolMoveCnt = usePoolMoveCnt; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public String getComments() { + return this.comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public Integer getUsePoolCnt() { + return this.usePoolCnt; + } + + public void setUsePoolCnt(Integer usePoolCnt) { + this.usePoolCnt = usePoolCnt; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getCluster() { + return this.cluster; + } + + public void setCluster(String cluster) { + this.cluster = cluster; + } + + public Boolean getAbleExecute() { + return this.ableExecute; + } + + public void setAbleExecute(Boolean ableExecute) { + this.ableExecute = ableExecute; + } + + public String getUsePoolDetail() { + return this.usePoolDetail; + } + + public void setUsePoolDetail(String usePoolDetail) { + this.usePoolDetail = usePoolDetail; + } + + public String getBusinessTypeName() { + return this.businessTypeName; + } + + public void setBusinessTypeName(String businessTypeName) { + this.businessTypeName = businessTypeName; + } + + public Long getUseSupplyDate() { + return this.useSupplyDate; + } + + public void setUseSupplyDate(Long useSupplyDate) { + this.useSupplyDate = useSupplyDate; + } + + public String getPreExecuteRequest() { + return this.preExecuteRequest; + } + + public void setPreExecuteRequest(String preExecuteRequest) { + this.preExecuteRequest = preExecuteRequest; + } + + public String getSafeZone() { + return this.safeZone; + } + + public void setSafeZone(String safeZone) { + this.safeZone = safeZone; + } + + public List getRackInfo() { + return this.rackInfo; + } + + public void setRackInfo(List rackInfo) { + this.rackInfo = rackInfo; + } + + public DemandDeploy getDemandDeploy() { + return this.demandDeploy; + } + + public void setDemandDeploy(DemandDeploy demandDeploy) { + this.demandDeploy = demandDeploy; + } + + public DemandItem getDemandItem() { + return this.demandItem; + } + + public void setDemandItem(DemandItem demandItem) { + this.demandItem = demandItem; + } + + public static class DemandDeploy { + + private String netArch; + + private String frameworkClass; + + private String deployMode; + + private String deployLocation; + + private String deployArch; + + private String nodeType; + + private String deployLevel; + + private String boxModel; + + private String publicNetWorkExport; + + private String boxUpLink; + + private String deployRole; + + private String boxDownLink; + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public String getFrameworkClass() { + return this.frameworkClass; + } + + public void setFrameworkClass(String frameworkClass) { + this.frameworkClass = frameworkClass; + } + + public String getDeployMode() { + return this.deployMode; + } + + public void setDeployMode(String deployMode) { + this.deployMode = deployMode; + } + + public String getDeployLocation() { + return this.deployLocation; + } + + public void setDeployLocation(String deployLocation) { + this.deployLocation = deployLocation; + } + + public String getDeployArch() { + return this.deployArch; + } + + public void setDeployArch(String deployArch) { + this.deployArch = deployArch; + } + + public String getNodeType() { + return this.nodeType; + } + + public void setNodeType(String nodeType) { + this.nodeType = nodeType; + } + + public String getDeployLevel() { + return this.deployLevel; + } + + public void setDeployLevel(String deployLevel) { + this.deployLevel = deployLevel; + } + + public String getBoxModel() { + return this.boxModel; + } + + public void setBoxModel(String boxModel) { + this.boxModel = boxModel; + } + + public String getPublicNetWorkExport() { + return this.publicNetWorkExport; + } + + public void setPublicNetWorkExport(String publicNetWorkExport) { + this.publicNetWorkExport = publicNetWorkExport; + } + + public String getBoxUpLink() { + return this.boxUpLink; + } + + public void setBoxUpLink(String boxUpLink) { + this.boxUpLink = boxUpLink; + } + + public String getDeployRole() { + return this.deployRole; + } + + public void setDeployRole(String deployRole) { + this.deployRole = deployRole; + } + + public String getBoxDownLink() { + return this.boxDownLink; + } + + public void setBoxDownLink(String boxDownLink) { + this.boxDownLink = boxDownLink; + } + } + + public static class DemandItem { + + private String demandItemType; + + private ServerDTO serverDTO; + + private NetPackValue netPackValue; + + private PubNetAccessValue pubNetAccessValue; + + private ServiceValue serviceValue; + + private ComboValue comboValue; + + private RackValue rackValue; + + private ExchangeValue exchangeValue; + + public String getDemandItemType() { + return this.demandItemType; + } + + public void setDemandItemType(String demandItemType) { + this.demandItemType = demandItemType; + } + + public ServerDTO getServerDTO() { + return this.serverDTO; + } + + public void setServerDTO(ServerDTO serverDTO) { + this.serverDTO = serverDTO; + } + + public NetPackValue getNetPackValue() { + return this.netPackValue; + } + + public void setNetPackValue(NetPackValue netPackValue) { + this.netPackValue = netPackValue; + } + + public PubNetAccessValue getPubNetAccessValue() { + return this.pubNetAccessValue; + } + + public void setPubNetAccessValue(PubNetAccessValue pubNetAccessValue) { + this.pubNetAccessValue = pubNetAccessValue; + } + + public ServiceValue getServiceValue() { + return this.serviceValue; + } + + public void setServiceValue(ServiceValue serviceValue) { + this.serviceValue = serviceValue; + } + + public ComboValue getComboValue() { + return this.comboValue; + } + + public void setComboValue(ComboValue comboValue) { + this.comboValue = comboValue; + } + + public RackValue getRackValue() { + return this.rackValue; + } + + public void setRackValue(RackValue rackValue) { + this.rackValue = rackValue; + } + + public ExchangeValue getExchangeValue() { + return this.exchangeValue; + } + + public void setExchangeValue(ExchangeValue exchangeValue) { + this.exchangeValue = exchangeValue; + } + + public static class ServerDTO { + + private String config; + + private String model; + + private String nic; + + public String getConfig() { + return this.config; + } + + public void setConfig(String config) { + this.config = config; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + } + + public static class NetPackValue { + + private List itemList; + + public List getItemList() { + return this.itemList; + } + + public void setItemList(List itemList) { + this.itemList = itemList; + } + + public static class ItemListItem { + + private String role; + + private Long demandQty; + + private String resourceType; + + private String framework; + + private String remark; + + public String getRole() { + return this.role; + } + + public void setRole(String role) { + this.role = role; + } + + public Long getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Long demandQty) { + this.demandQty = demandQty; + } + + public String getResourceType() { + return this.resourceType; + } + + public void setResourceType(String resourceType) { + this.resourceType = resourceType; + } + + public String getFramework() { + return this.framework; + } + + public void setFramework(String framework) { + this.framework = framework; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + } + } + + public static class PubNetAccessValue { + + private List itemList1; + + public List getItemList1() { + return this.itemList1; + } + + public void setItemList1(List itemList1) { + this.itemList1 = itemList1; + } + + public static class ItemListItem2 { + + private String price; + + private Float bandwidth; + + private String accessType; + + public String getPrice() { + return this.price; + } + + public void setPrice(String price) { + this.price = price; + } + + public Float getBandwidth() { + return this.bandwidth; + } + + public void setBandwidth(Float bandwidth) { + this.bandwidth = bandwidth; + } + + public String getAccessType() { + return this.accessType; + } + + public void setAccessType(String accessType) { + this.accessType = accessType; + } + } + } + + public static class ServiceValue { + + private List itemList3; + + public List getItemList3() { + return this.itemList3; + } + + public void setItemList3(List itemList3) { + this.itemList3 = itemList3; + } + + public static class ItemListItem4 { + + private String serviceTypeName; + + private String area; + + private Float year; + + private String serviceType; + + private Integer amount; + + private String idc; + + private String serviceItemName; + + private String city; + + private String serviceItem; + + private String remark; + + public String getServiceTypeName() { + return this.serviceTypeName; + } + + public void setServiceTypeName(String serviceTypeName) { + this.serviceTypeName = serviceTypeName; + } + + public String getArea() { + return this.area; + } + + public void setArea(String area) { + this.area = area; + } + + public Float getYear() { + return this.year; + } + + public void setYear(Float year) { + this.year = year; + } + + public String getServiceType() { + return this.serviceType; + } + + public void setServiceType(String serviceType) { + this.serviceType = serviceType; + } + + public Integer getAmount() { + return this.amount; + } + + public void setAmount(Integer amount) { + this.amount = amount; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + + public String getServiceItemName() { + return this.serviceItemName; + } + + public void setServiceItemName(String serviceItemName) { + this.serviceItemName = serviceItemName; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getServiceItem() { + return this.serviceItem; + } + + public void setServiceItem(String serviceItem) { + this.serviceItem = serviceItem; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + } + } + + public static class ComboValue { + + private String skuId; + + private List serverDemandList; + + private List wholeRackList; + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public List getWholeRackList() { + return this.wholeRackList; + } + + public void setWholeRackList(List wholeRackList) { + this.wholeRackList = wholeRackList; + } + + public static class ServerDemandListItem { + + private String item; + + private String product3; + + private Integer agreedQuantity; + + private Integer quantity; + + private String skuId; + + private String appGroup; + + private List snList; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + } + + public static class WholeRackListItem { + + private String order; + + private String rackPackage; + + private List serverDemandList5; + + public String getOrder() { + return this.order; + } + + public void setOrder(String order) { + this.order = order; + } + + public String getRackPackage() { + return this.rackPackage; + } + + public void setRackPackage(String rackPackage) { + this.rackPackage = rackPackage; + } + + public List getServerDemandList5() { + return this.serverDemandList5; + } + + public void setServerDemandList5(List serverDemandList5) { + this.serverDemandList5 = serverDemandList5; + } + + public static class ServerDemandListItem6 { + + private String item; + + private String product3; + + private Integer agreedQuantity; + + private Integer quantity; + + private String skuId; + + private String appGroup; + + private List snList7; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public List getSnList7() { + return this.snList7; + } + + public void setSnList7(List snList7) { + this.snList7 = snList7; + } + } + } + } + + public static class RackValue { + + private List itemList8; + + public List getItemList8() { + return this.itemList8; + } + + public void setItemList8(List itemList8) { + this.itemList8 = itemList8; + } + + public static class ItemListItem9 { + + private Integer rackNum; + + private String roomCode; + + private String power; + + private Float powUtilizationRate; + + public Integer getRackNum() { + return this.rackNum; + } + + public void setRackNum(Integer rackNum) { + this.rackNum = rackNum; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getPower() { + return this.power; + } + + public void setPower(String power) { + this.power = power; + } + + public Float getPowUtilizationRate() { + return this.powUtilizationRate; + } + + public void setPowUtilizationRate(Float powUtilizationRate) { + this.powUtilizationRate = powUtilizationRate; + } + } + } + + public static class ExchangeValue { + + private List serverDemandList10; + + private List exchangeList; + + public List getServerDemandList10() { + return this.serverDemandList10; + } + + public void setServerDemandList10(List serverDemandList10) { + this.serverDemandList10 = serverDemandList10; + } + + public List getExchangeList() { + return this.exchangeList; + } + + public void setExchangeList(List exchangeList) { + this.exchangeList = exchangeList; + } + + public static class ServerDemandListItem11 { + + private String item; + + private String product3; + + private Integer agreedQuantity; + + private Integer quantity; + + private String skuId; + + private String appGroup; + + private List snList12; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public List getSnList12() { + return this.snList12; + } + + public void setSnList12(List snList12) { + this.snList12 = snList12; + } + } + } + } + } + + @Override + public GetSolutionListResponse getInstance(UnmarshallerContext context) { + return GetSolutionListResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetTertiaryProdBySecondaryProdRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetTertiaryProdBySecondaryProdRequest.java new file mode 100644 index 0000000000..b8342bd1ec --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetTertiaryProdBySecondaryProdRequest.java @@ -0,0 +1,62 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class GetTertiaryProdBySecondaryProdRequest extends RpcAcsRequest { + + + private String productClass; + + private String productClassCN; + public GetTertiaryProdBySecondaryProdRequest() { + super("brinekingdom", "2019-06-27", "GetTertiaryProdBySecondaryProd"); + setMethod(MethodType.POST); + } + + public String getProductClass() { + return this.productClass; + } + + public void setProductClass(String productClass) { + this.productClass = productClass; + if(productClass != null){ + putQueryParameter("ProductClass", productClass); + } + } + + public String getProductClassCN() { + return this.productClassCN; + } + + public void setProductClassCN(String productClassCN) { + this.productClassCN = productClassCN; + if(productClassCN != null){ + putQueryParameter("ProductClassCN", productClassCN); + } + } + + @Override + public Class getResponseClass() { + return GetTertiaryProdBySecondaryProdResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetTertiaryProdBySecondaryProdResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetTertiaryProdBySecondaryProdResponse.java new file mode 100644 index 0000000000..59ee15b024 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/GetTertiaryProdBySecondaryProdResponse.java @@ -0,0 +1,200 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.GetTertiaryProdBySecondaryProdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetTertiaryProdBySecondaryProdResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String aoneId; + + private String aoneName; + + private String _class; + + private String productClass; + + private String productClassCN; + + private String productCode; + + private String productEnName; + + private String productLineCN; + + private String productLineEN; + + private String productName; + + public String getAoneId() { + return this.aoneId; + } + + public void setAoneId(String aoneId) { + this.aoneId = aoneId; + } + + public String getAoneName() { + return this.aoneName; + } + + public void setAoneName(String aoneName) { + this.aoneName = aoneName; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getProductClass() { + return this.productClass; + } + + public void setProductClass(String productClass) { + this.productClass = productClass; + } + + public String getProductClassCN() { + return this.productClassCN; + } + + public void setProductClassCN(String productClassCN) { + this.productClassCN = productClassCN; + } + + public String getProductCode() { + return this.productCode; + } + + public void setProductCode(String productCode) { + this.productCode = productCode; + } + + public String getProductEnName() { + return this.productEnName; + } + + public void setProductEnName(String productEnName) { + this.productEnName = productEnName; + } + + public String getProductLineCN() { + return this.productLineCN; + } + + public void setProductLineCN(String productLineCN) { + this.productLineCN = productLineCN; + } + + public String getProductLineEN() { + return this.productLineEN; + } + + public void setProductLineEN(String productLineEN) { + this.productLineEN = productLineEN; + } + + public String getProductName() { + return this.productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + } + + @Override + public GetTertiaryProdBySecondaryProdResponse getInstance(UnmarshallerContext context) { + return GetTertiaryProdBySecondaryProdResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ListAllZoneRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ListAllZoneRequest.java new file mode 100644 index 0000000000..d5f3abf9be --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ListAllZoneRequest.java @@ -0,0 +1,51 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class ListAllZoneRequest extends RpcAcsRequest { + + + private String keyword; + public ListAllZoneRequest() { + super("brinekingdom", "2019-06-27", "ListAllZone"); + setProtocol(ProtocolType.HTTPS); + setMethod(MethodType.POST); + } + + public String getKeyword() { + return this.keyword; + } + + public void setKeyword(String keyword) { + this.keyword = keyword; + if(keyword != null){ + putQueryParameter("Keyword", keyword); + } + } + + @Override + public Class getResponseClass() { + return ListAllZoneResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ListAllZoneResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ListAllZoneResponse.java new file mode 100644 index 0000000000..58d6975ef4 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ListAllZoneResponse.java @@ -0,0 +1,110 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.ListAllZoneResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ListAllZoneResponse extends AcsResponse { + + private String errorMessage; + + private String resultCode; + + private Boolean success; + + private String _class; + + private List<区域> result; + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public List<区域> getResult() { + return this.result; + } + + public void setResult(List<区域> result) { + this.result = result; + } + + public static class 区域 { + + private String key; + + private String value; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + + @Override + public ListAllZoneResponse getInstance(UnmarshallerContext context) { + return ListAllZoneResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/OpenClientsDemandServiceRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/OpenClientsDemandServiceRequest.java new file mode 100644 index 0000000000..08be733883 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/OpenClientsDemandServiceRequest.java @@ -0,0 +1,887 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import java.util.Map; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class OpenClientsDemandServiceRequest extends RpcAcsRequest { + + + private String cluster; + + private String safeZone; + + private String projectCode; + + private String source; + + private Long osId; + + private String supplyLevel; + + private Long installId; + + private String operator; + + private String product3; + + private String productType; + + private String businessType; + + private String uid; + + private Map features; + + private Boolean factoryInstall; + + private String scenario; + + private String shiftMethod; + + private Integer demandQty; + + private String tenantId; + + private String classZone; + + private String azone; + + private String osName; + + private String networkArch; + + private String sourceId; + + private String item; + + private String projectName; + + private String comments; + + private String org; + + private Boolean autoApprove; + + private String installName; + + private String idc; + + private DemandItem demandItem; + + private String priority; + + private Long clientsDemandId; + + private String demandClass; + + private String itemType; + + private String requireType; + + private String appGroup; + + private String sourceStatus; + + private Boolean install; + + private String logicZone; + + private String replenishUnit; + + private String expectTurnOverDate; + public OpenClientsDemandServiceRequest() { + super("brinekingdom", "2019-06-27", "OpenClientsDemandService"); + setMethod(MethodType.POST); + } + + public String getCluster() { + return this.cluster; + } + + public void setCluster(String cluster) { + this.cluster = cluster; + if(cluster != null){ + putQueryParameter("Cluster", cluster); + } + } + + public String getSafeZone() { + return this.safeZone; + } + + public void setSafeZone(String safeZone) { + this.safeZone = safeZone; + if(safeZone != null){ + putQueryParameter("SafeZone", safeZone); + } + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + if(projectCode != null){ + putQueryParameter("ProjectCode", projectCode); + } + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + if(source != null){ + putQueryParameter("Source", source); + } + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + if(osId != null){ + putQueryParameter("OsId", osId.toString()); + } + } + + public String getSupplyLevel() { + return this.supplyLevel; + } + + public void setSupplyLevel(String supplyLevel) { + this.supplyLevel = supplyLevel; + if(supplyLevel != null){ + putQueryParameter("SupplyLevel", supplyLevel); + } + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + if(installId != null){ + putQueryParameter("InstallId", installId.toString()); + } + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + if(operator != null){ + putQueryParameter("Operator", operator); + } + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + if(product3 != null){ + putQueryParameter("Product3", product3); + } + } + + public String getProductType() { + return this.productType; + } + + public void setProductType(String productType) { + this.productType = productType; + if(productType != null){ + putQueryParameter("ProductType", productType); + } + } + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + if(businessType != null){ + putQueryParameter("BusinessType", businessType); + } + } + + public String getUid() { + return this.uid; + } + + public void setUid(String uid) { + this.uid = uid; + if(uid != null){ + putQueryParameter("Uid", uid); + } + } + + public Map getFeatures() { + return this.features; + } + + public void setFeatures(Map features) { + this.features = features; + if (features != null) { + for (String key1: features.keySet() ) { + putQueryParameter("Features.#" + key1.length() + "#" + key1 , features.get(key1)); + } + } + } + + public Boolean getFactoryInstall() { + return this.factoryInstall; + } + + public void setFactoryInstall(Boolean factoryInstall) { + this.factoryInstall = factoryInstall; + if(factoryInstall != null){ + putQueryParameter("FactoryInstall", factoryInstall.toString()); + } + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + if(scenario != null){ + putQueryParameter("Scenario", scenario); + } + } + + public String getShiftMethod() { + return this.shiftMethod; + } + + public void setShiftMethod(String shiftMethod) { + this.shiftMethod = shiftMethod; + if(shiftMethod != null){ + putQueryParameter("ShiftMethod", shiftMethod); + } + } + + public Integer getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Integer demandQty) { + this.demandQty = demandQty; + if(demandQty != null){ + putQueryParameter("DemandQty", demandQty.toString()); + } + } + + public String getTenantId() { + return this.tenantId; + } + + public void setTenantId(String tenantId) { + this.tenantId = tenantId; + if(tenantId != null){ + putQueryParameter("TenantId", tenantId); + } + } + + public String getClassZone() { + return this.classZone; + } + + public void setClassZone(String classZone) { + this.classZone = classZone; + if(classZone != null){ + putQueryParameter("ClassZone", classZone); + } + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + if(azone != null){ + putQueryParameter("Azone", azone); + } + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + if(osName != null){ + putQueryParameter("OsName", osName); + } + } + + public String getNetworkArch() { + return this.networkArch; + } + + public void setNetworkArch(String networkArch) { + this.networkArch = networkArch; + if(networkArch != null){ + putQueryParameter("NetworkArch", networkArch); + } + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + if(sourceId != null){ + putQueryParameter("SourceId", sourceId); + } + } + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + if(item != null){ + putQueryParameter("Item", item); + } + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + if(projectName != null){ + putQueryParameter("ProjectName", projectName); + } + } + + public String getComments() { + return this.comments; + } + + public void setComments(String comments) { + this.comments = comments; + if(comments != null){ + putQueryParameter("Comments", comments); + } + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + if(org != null){ + putQueryParameter("Org", org); + } + } + + public Boolean getAutoApprove() { + return this.autoApprove; + } + + public void setAutoApprove(Boolean autoApprove) { + this.autoApprove = autoApprove; + if(autoApprove != null){ + putQueryParameter("AutoApprove", autoApprove.toString()); + } + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + if(installName != null){ + putQueryParameter("InstallName", installName); + } + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + if(idc != null){ + putQueryParameter("Idc", idc); + } + } + + public DemandItem getDemandItem() { + return this.demandItem; + } + + public void setDemandItem(DemandItem demandItem) { + this.demandItem = demandItem; + if (demandItem != null) { + + if (demandItem.getServerDTO() != null) { + + putQueryParameter("DemandItem.ServerDTO.Nic" , demandItem.getServerDTO().getNic()); + putQueryParameter("DemandItem.ServerDTO.Model" , demandItem.getServerDTO().getModel()); + putQueryParameter("DemandItem.ServerDTO.Config" , demandItem.getServerDTO().getConfig()); + } + if (demandItem.getExchangeValue() != null) { + + if (demandItem.getExchangeValue().getExchangeList() != null) { + for (int depth1 = 0; depth1 < demandItem.getExchangeValue().getExchangeList().size(); depth1++) { + putQueryParameter("DemandItem.ExchangeValue.ExchangeList." + (depth1 + 1) , demandItem.getExchangeValue().getExchangeList().get(depth1)); + } + } + if (demandItem.getExchangeValue().getServerDemandList() != null) { + for (int depth1 = 0; depth1 < demandItem.getExchangeValue().getServerDemandList().size(); depth1++) { + if (demandItem.getExchangeValue().getServerDemandList().get(depth1) != null) { + + putQueryParameter("DemandItem.ExchangeValue.ServerDemandList." + (depth1 + 1) + ".Item" , demandItem.getExchangeValue().getServerDemandList().get(depth1).getItem()); + putQueryParameter("DemandItem.ExchangeValue.ServerDemandList." + (depth1 + 1) + ".Quantity" , demandItem.getExchangeValue().getServerDemandList().get(depth1).getQuantity()); + putQueryParameter("DemandItem.ExchangeValue.ServerDemandList." + (depth1 + 1) + ".AppGroup" , demandItem.getExchangeValue().getServerDemandList().get(depth1).getAppGroup()); + putQueryParameter("DemandItem.ExchangeValue.ServerDemandList." + (depth1 + 1) + ".AgreedQuantity" , demandItem.getExchangeValue().getServerDemandList().get(depth1).getAgreedQuantity()); + if (demandItem.getExchangeValue().getServerDemandList().get(depth1).getSnList() != null) { + for (int depth2 = 0; depth2 < demandItem.getExchangeValue().getServerDemandList().get(depth1).getSnList().size(); depth2++) { + putQueryParameter("DemandItem.ExchangeValue.ServerDemandList." + (depth1 + 1) + ".SnList." + (depth2 + 1) , demandItem.getExchangeValue().getServerDemandList().get(depth1).getSnList().get(depth2)); + } + } + putQueryParameter("DemandItem.ExchangeValue.ServerDemandList." + (depth1 + 1) + ".Product3" , demandItem.getExchangeValue().getServerDemandList().get(depth1).getProduct3()); + } + } + } + } + putQueryParameter("DemandItem.DemandItemType" , demandItem.getDemandItemType()); + if (demandItem.getComboValue() != null) { + + putQueryParameter("DemandItem.ComboValue.SkuId" , demandItem.getComboValue().getSkuId()); + if (demandItem.getComboValue().getServerDemandList() != null) { + for (int depth1 = 0; depth1 < demandItem.getComboValue().getServerDemandList().size(); depth1++) { + if (demandItem.getComboValue().getServerDemandList().get(depth1) != null) { + + putQueryParameter("DemandItem.ComboValue.ServerDemandList." + (depth1 + 1) + ".Item" , demandItem.getComboValue().getServerDemandList().get(depth1).getItem()); + putQueryParameter("DemandItem.ComboValue.ServerDemandList." + (depth1 + 1) + ".Quantity" , demandItem.getComboValue().getServerDemandList().get(depth1).getQuantity()); + putQueryParameter("DemandItem.ComboValue.ServerDemandList." + (depth1 + 1) + ".AppGroup" , demandItem.getComboValue().getServerDemandList().get(depth1).getAppGroup()); + putQueryParameter("DemandItem.ComboValue.ServerDemandList." + (depth1 + 1) + ".AgreedQuantity" , demandItem.getComboValue().getServerDemandList().get(depth1).getAgreedQuantity()); + if (demandItem.getComboValue().getServerDemandList().get(depth1).getSnList() != null) { + for (int depth2 = 0; depth2 < demandItem.getComboValue().getServerDemandList().get(depth1).getSnList().size(); depth2++) { + putQueryParameter("DemandItem.ComboValue.ServerDemandList." + (depth1 + 1) + ".SnList." + (depth2 + 1) , demandItem.getComboValue().getServerDemandList().get(depth1).getSnList().get(depth2)); + } + } + putQueryParameter("DemandItem.ComboValue.ServerDemandList." + (depth1 + 1) + ".Product3" , demandItem.getComboValue().getServerDemandList().get(depth1).getProduct3()); + } + } + } + } + } + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + if(priority != null){ + putQueryParameter("Priority", priority); + } + } + + public Long getClientsDemandId() { + return this.clientsDemandId; + } + + public void setClientsDemandId(Long clientsDemandId) { + this.clientsDemandId = clientsDemandId; + if(clientsDemandId != null){ + putQueryParameter("ClientsDemandId", clientsDemandId.toString()); + } + } + + public String getDemandClass() { + return this.demandClass; + } + + public void setDemandClass(String demandClass) { + this.demandClass = demandClass; + if(demandClass != null){ + putQueryParameter("DemandClass", demandClass); + } + } + + public String getItemType() { + return this.itemType; + } + + public void setItemType(String itemType) { + this.itemType = itemType; + if(itemType != null){ + putQueryParameter("ItemType", itemType); + } + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + if(requireType != null){ + putQueryParameter("RequireType", requireType); + } + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + if(appGroup != null){ + putQueryParameter("AppGroup", appGroup); + } + } + + public String getSourceStatus() { + return this.sourceStatus; + } + + public void setSourceStatus(String sourceStatus) { + this.sourceStatus = sourceStatus; + if(sourceStatus != null){ + putQueryParameter("SourceStatus", sourceStatus); + } + } + + public Boolean getInstall() { + return this.install; + } + + public void setInstall(Boolean install) { + this.install = install; + if(install != null){ + putQueryParameter("Install", install.toString()); + } + } + + public String getLogicZone() { + return this.logicZone; + } + + public void setLogicZone(String logicZone) { + this.logicZone = logicZone; + if(logicZone != null){ + putQueryParameter("LogicZone", logicZone); + } + } + + public String getReplenishUnit() { + return this.replenishUnit; + } + + public void setReplenishUnit(String replenishUnit) { + this.replenishUnit = replenishUnit; + if(replenishUnit != null){ + putQueryParameter("ReplenishUnit", replenishUnit); + } + } + + public String getExpectTurnOverDate() { + return this.expectTurnOverDate; + } + + public void setExpectTurnOverDate(String expectTurnOverDate) { + this.expectTurnOverDate = expectTurnOverDate; + if(expectTurnOverDate != null){ + putQueryParameter("ExpectTurnOverDate", expectTurnOverDate); + } + } + + public static class DemandItem { + + private ServerDTO serverDTO; + + private ExchangeValue exchangeValue; + + private String demandItemType; + + private ComboValue comboValue; + + public ServerDTO getServerDTO() { + return this.serverDTO; + } + + public void setServerDTO(ServerDTO serverDTO) { + this.serverDTO = serverDTO; + } + + public ExchangeValue getExchangeValue() { + return this.exchangeValue; + } + + public void setExchangeValue(ExchangeValue exchangeValue) { + this.exchangeValue = exchangeValue; + } + + public String getDemandItemType() { + return this.demandItemType; + } + + public void setDemandItemType(String demandItemType) { + this.demandItemType = demandItemType; + } + + public ComboValue getComboValue() { + return this.comboValue; + } + + public void setComboValue(ComboValue comboValue) { + this.comboValue = comboValue; + } + + public static class ServerDTO { + + private String nic; + + private String model; + + private String config; + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getConfig() { + return this.config; + } + + public void setConfig(String config) { + this.config = config; + } + } + + public static class ExchangeValue { + + private List exchangeList; + + private List serverDemandList; + + public List getExchangeList() { + return this.exchangeList; + } + + public void setExchangeList(List exchangeList) { + this.exchangeList = exchangeList; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public static class ServerDemandListItem { + + private String item; + + private Integer quantity; + + private String appGroup; + + private Integer agreedQuantity; + + private List snList; + + private String product3; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + } + } + + public static class ComboValue { + + private String skuId; + + private List serverDemandList; + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public static class ServerDemandListItem { + + private String item; + + private Integer quantity; + + private String appGroup; + + private Integer agreedQuantity; + + private List snList; + + private String product3; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + } + } + } + + @Override + public Class getResponseClass() { + return OpenClientsDemandServiceResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/OpenClientsDemandServiceResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/OpenClientsDemandServiceResponse.java new file mode 100644 index 0000000000..19c8283741 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/OpenClientsDemandServiceResponse.java @@ -0,0 +1,106 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.OpenClientsDemandServiceResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class OpenClientsDemandServiceResponse extends AcsResponse { + + private String requestId; + + private String sourceId; + + private String errorMsg; + + private Long demandId; + + private String source; + + private String resultCode; + + private Boolean success; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + + public Long getDemandId() { + return this.demandId; + } + + public void setDemandId(Long demandId) { + this.demandId = demandId; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + @Override + public OpenClientsDemandServiceResponse getInstance(UnmarshallerContext context) { + return OpenClientsDemandServiceResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/PushFcstPlanSopRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/PushFcstPlanSopRequest.java new file mode 100644 index 0000000000..e4542f1f9d --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/PushFcstPlanSopRequest.java @@ -0,0 +1,491 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class PushFcstPlanSopRequest extends RpcAcsRequest { + + + private String regionCode; + + private String classZoneCode; + + private String cmP; + + private String product2; + + private String product1; + + private String nic; + + private String logicZoneCode; + + private String cmU; + + private String source; + + private Integer type; + + private String azCode; + + private String cmV; + + private String operator; + + private String product3; + + private String machineType; + + private String scenario; + + private Integer nakedDelivery; + + private String cloudDeployProduct3; + + private String orgKey; + + private String netArch; + + private String business; + + private String cloudDeployProduct1; + + private String cloudDeployProduct2; + + private Integer cnt; + + private String safeZoneCode; + + private String timeStr; + + private String priority; + + private String requireType; + + private Integer install; + + private String cmC; + + private Long planId; + + private String outId; + + private String roomCode; + + private String comment; + + private Integer modelLoad; + public PushFcstPlanSopRequest() { + super("brinekingdom", "2019-06-27", "PushFcstPlanSop"); + setMethod(MethodType.POST); + } + + public String getRegionCode() { + return this.regionCode; + } + + public void setRegionCode(String regionCode) { + this.regionCode = regionCode; + if(regionCode != null){ + putQueryParameter("RegionCode", regionCode); + } + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + if(classZoneCode != null){ + putQueryParameter("ClassZoneCode", classZoneCode); + } + } + + public String getCmP() { + return this.cmP; + } + + public void setCmP(String cmP) { + this.cmP = cmP; + if(cmP != null){ + putQueryParameter("CmP", cmP); + } + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + if(product2 != null){ + putQueryParameter("Product2", product2); + } + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + if(product1 != null){ + putQueryParameter("Product1", product1); + } + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + if(nic != null){ + putQueryParameter("Nic", nic); + } + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + if(logicZoneCode != null){ + putQueryParameter("LogicZoneCode", logicZoneCode); + } + } + + public String getCmU() { + return this.cmU; + } + + public void setCmU(String cmU) { + this.cmU = cmU; + if(cmU != null){ + putQueryParameter("CmU", cmU); + } + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + if(source != null){ + putQueryParameter("Source", source); + } + } + + public Integer getType() { + return this.type; + } + + public void setType(Integer type) { + this.type = type; + if(type != null){ + putQueryParameter("Type", type.toString()); + } + } + + public String getAzCode() { + return this.azCode; + } + + public void setAzCode(String azCode) { + this.azCode = azCode; + if(azCode != null){ + putQueryParameter("AzCode", azCode); + } + } + + public String getCmV() { + return this.cmV; + } + + public void setCmV(String cmV) { + this.cmV = cmV; + if(cmV != null){ + putQueryParameter("CmV", cmV); + } + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + if(operator != null){ + putQueryParameter("Operator", operator); + } + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + if(product3 != null){ + putQueryParameter("Product3", product3); + } + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + if(machineType != null){ + putQueryParameter("MachineType", machineType); + } + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + if(scenario != null){ + putQueryParameter("Scenario", scenario); + } + } + + public Integer getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Integer nakedDelivery) { + this.nakedDelivery = nakedDelivery; + if(nakedDelivery != null){ + putQueryParameter("NakedDelivery", nakedDelivery.toString()); + } + } + + public String getCloudDeployProduct3() { + return this.cloudDeployProduct3; + } + + public void setCloudDeployProduct3(String cloudDeployProduct3) { + this.cloudDeployProduct3 = cloudDeployProduct3; + if(cloudDeployProduct3 != null){ + putQueryParameter("CloudDeployProduct3", cloudDeployProduct3); + } + } + + public String getOrgKey() { + return this.orgKey; + } + + public void setOrgKey(String orgKey) { + this.orgKey = orgKey; + if(orgKey != null){ + putQueryParameter("OrgKey", orgKey); + } + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + if(netArch != null){ + putQueryParameter("NetArch", netArch); + } + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + if(business != null){ + putQueryParameter("Business", business); + } + } + + public String getCloudDeployProduct1() { + return this.cloudDeployProduct1; + } + + public void setCloudDeployProduct1(String cloudDeployProduct1) { + this.cloudDeployProduct1 = cloudDeployProduct1; + if(cloudDeployProduct1 != null){ + putQueryParameter("CloudDeployProduct1", cloudDeployProduct1); + } + } + + public String getCloudDeployProduct2() { + return this.cloudDeployProduct2; + } + + public void setCloudDeployProduct2(String cloudDeployProduct2) { + this.cloudDeployProduct2 = cloudDeployProduct2; + if(cloudDeployProduct2 != null){ + putQueryParameter("CloudDeployProduct2", cloudDeployProduct2); + } + } + + public Integer getCnt() { + return this.cnt; + } + + public void setCnt(Integer cnt) { + this.cnt = cnt; + if(cnt != null){ + putQueryParameter("Cnt", cnt.toString()); + } + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + if(safeZoneCode != null){ + putQueryParameter("SafeZoneCode", safeZoneCode); + } + } + + public String getTimeStr() { + return this.timeStr; + } + + public void setTimeStr(String timeStr) { + this.timeStr = timeStr; + if(timeStr != null){ + putQueryParameter("TimeStr", timeStr); + } + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + if(priority != null){ + putQueryParameter("Priority", priority); + } + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + if(requireType != null){ + putQueryParameter("RequireType", requireType); + } + } + + public Integer getInstall() { + return this.install; + } + + public void setInstall(Integer install) { + this.install = install; + if(install != null){ + putQueryParameter("Install", install.toString()); + } + } + + public String getCmC() { + return this.cmC; + } + + public void setCmC(String cmC) { + this.cmC = cmC; + if(cmC != null){ + putQueryParameter("CmC", cmC); + } + } + + public Long getPlanId() { + return this.planId; + } + + public void setPlanId(Long planId) { + this.planId = planId; + if(planId != null){ + putQueryParameter("PlanId", planId.toString()); + } + } + + public String getOutId() { + return this.outId; + } + + public void setOutId(String outId) { + this.outId = outId; + if(outId != null){ + putQueryParameter("OutId", outId); + } + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + if(roomCode != null){ + putQueryParameter("RoomCode", roomCode); + } + } + + public String getComment() { + return this.comment; + } + + public void setComment(String comment) { + this.comment = comment; + if(comment != null){ + putQueryParameter("Comment", comment); + } + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + if(modelLoad != null){ + putQueryParameter("ModelLoad", modelLoad.toString()); + } + } + + @Override + public Class getResponseClass() { + return PushFcstPlanSopResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/PushFcstPlanSopResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/PushFcstPlanSopResponse.java new file mode 100644 index 0000000000..d3b739e41a --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/PushFcstPlanSopResponse.java @@ -0,0 +1,96 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.PushFcstPlanSopResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class PushFcstPlanSopResponse extends AcsResponse { + + private String traceId; + + private String errorMessage; + + private String resultCode; + + private Boolean success; + + private Long result; + + private String requestId; + + public String getTraceId() { + return this.traceId; + } + + public void setTraceId(String traceId) { + this.traceId = traceId; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Long getResult() { + return this.result; + } + + public void setResult(Long result) { + this.result = result; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public PushFcstPlanSopResponse getInstance(UnmarshallerContext context) { + return PushFcstPlanSopResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAllOsRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAllOsRequest.java new file mode 100644 index 0000000000..477047552d --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAllOsRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QueryAllOsRequest extends RpcAcsRequest { + + + private String requestId; + public QueryAllOsRequest() { + super("brinekingdom", "2019-06-27", "QueryAllOs"); + setMethod(MethodType.POST); + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + if(requestId != null){ + putQueryParameter("RequestId", requestId); + } + } + + @Override + public Class getResponseClass() { + return QueryAllOsResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAllOsResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAllOsResponse.java new file mode 100644 index 0000000000..17a2cc1e48 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAllOsResponse.java @@ -0,0 +1,120 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QueryAllOsResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryAllOsResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String label; + + private Long value; + + public String getLabel() { + return this.label; + } + + public void setLabel(String label) { + this.label = label; + } + + public Long getValue() { + return this.value; + } + + public void setValue(Long value) { + this.value = value; + } + } + + @Override + public QueryAllOsResponse getInstance(UnmarshallerContext context) { + return QueryAllOsResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByCityCodeRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByCityCodeRequest.java new file mode 100644 index 0000000000..fae20e15ae --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByCityCodeRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QueryAzoneByCityCodeRequest extends RpcAcsRequest { + + + private String cityCode; + public QueryAzoneByCityCodeRequest() { + super("brinekingdom", "2019-06-27", "QueryAzoneByCityCode"); + setMethod(MethodType.POST); + } + + public String getCityCode() { + return this.cityCode; + } + + public void setCityCode(String cityCode) { + this.cityCode = cityCode; + if(cityCode != null){ + putQueryParameter("CityCode", cityCode); + } + } + + @Override + public Class getResponseClass() { + return QueryAzoneByCityCodeResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByCityCodeResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByCityCodeResponse.java new file mode 100644 index 0000000000..707093a9b7 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByCityCodeResponse.java @@ -0,0 +1,260 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QueryAzoneByCityCodeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryAzoneByCityCodeResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String azAlias; + + private String azCnName; + + private Long azId; + + private String azName; + + private String cityCnName; + + private String cityEnName; + + private String _class; + + private String cnStatus; + + private String creator; + + private String creatorNic; + + private String enStatus; + + private Long lastUpdate; + + private String modifier; + + private String modifierNic; + + private String roomCode; + + private String roomName; + + public String getAzAlias() { + return this.azAlias; + } + + public void setAzAlias(String azAlias) { + this.azAlias = azAlias; + } + + public String getAzCnName() { + return this.azCnName; + } + + public void setAzCnName(String azCnName) { + this.azCnName = azCnName; + } + + public Long getAzId() { + return this.azId; + } + + public void setAzId(Long azId) { + this.azId = azId; + } + + public String getAzName() { + return this.azName; + } + + public void setAzName(String azName) { + this.azName = azName; + } + + public String getCityCnName() { + return this.cityCnName; + } + + public void setCityCnName(String cityCnName) { + this.cityCnName = cityCnName; + } + + public String getCityEnName() { + return this.cityEnName; + } + + public void setCityEnName(String cityEnName) { + this.cityEnName = cityEnName; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getCnStatus() { + return this.cnStatus; + } + + public void setCnStatus(String cnStatus) { + this.cnStatus = cnStatus; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public String getEnStatus() { + return this.enStatus; + } + + public void setEnStatus(String enStatus) { + this.enStatus = enStatus; + } + + public Long getLastUpdate() { + return this.lastUpdate; + } + + public void setLastUpdate(Long lastUpdate) { + this.lastUpdate = lastUpdate; + } + + public String getModifier() { + return this.modifier; + } + + public void setModifier(String modifier) { + this.modifier = modifier; + } + + public String getModifierNic() { + return this.modifierNic; + } + + public void setModifierNic(String modifierNic) { + this.modifierNic = modifierNic; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getRoomName() { + return this.roomName; + } + + public void setRoomName(String roomName) { + this.roomName = roomName; + } + } + + @Override + public QueryAzoneByCityCodeResponse getInstance(UnmarshallerContext context) { + return QueryAzoneByCityCodeResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByNameRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByNameRequest.java new file mode 100644 index 0000000000..d242860b51 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByNameRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QueryAzoneByNameRequest extends RpcAcsRequest { + + + private String azName; + public QueryAzoneByNameRequest() { + super("brinekingdom", "2019-06-27", "QueryAzoneByName"); + setMethod(MethodType.POST); + } + + public String getAzName() { + return this.azName; + } + + public void setAzName(String azName) { + this.azName = azName; + if(azName != null){ + putQueryParameter("AzName", azName); + } + } + + @Override + public Class getResponseClass() { + return QueryAzoneByNameResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByNameResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByNameResponse.java new file mode 100644 index 0000000000..c5bb532683 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryAzoneByNameResponse.java @@ -0,0 +1,259 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QueryAzoneByNameResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryAzoneByNameResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private Result result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Result getResult() { + return this.result; + } + + public void setResult(Result result) { + this.result = result; + } + + public static class Result { + + private String azAlias; + + private String azCnName; + + private Long azId; + + private String azName; + + private String cityCnName; + + private String cityEnName; + + private String _class; + + private String cnStatus; + + private String creator; + + private String creatorNic; + + private String enStatus; + + private Long lastUpdate; + + private String modifier; + + private String modifierNic; + + private String roomCode; + + private String roomName; + + public String getAzAlias() { + return this.azAlias; + } + + public void setAzAlias(String azAlias) { + this.azAlias = azAlias; + } + + public String getAzCnName() { + return this.azCnName; + } + + public void setAzCnName(String azCnName) { + this.azCnName = azCnName; + } + + public Long getAzId() { + return this.azId; + } + + public void setAzId(Long azId) { + this.azId = azId; + } + + public String getAzName() { + return this.azName; + } + + public void setAzName(String azName) { + this.azName = azName; + } + + public String getCityCnName() { + return this.cityCnName; + } + + public void setCityCnName(String cityCnName) { + this.cityCnName = cityCnName; + } + + public String getCityEnName() { + return this.cityEnName; + } + + public void setCityEnName(String cityEnName) { + this.cityEnName = cityEnName; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getCnStatus() { + return this.cnStatus; + } + + public void setCnStatus(String cnStatus) { + this.cnStatus = cnStatus; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public String getEnStatus() { + return this.enStatus; + } + + public void setEnStatus(String enStatus) { + this.enStatus = enStatus; + } + + public Long getLastUpdate() { + return this.lastUpdate; + } + + public void setLastUpdate(Long lastUpdate) { + this.lastUpdate = lastUpdate; + } + + public String getModifier() { + return this.modifier; + } + + public void setModifier(String modifier) { + this.modifier = modifier; + } + + public String getModifierNic() { + return this.modifierNic; + } + + public void setModifierNic(String modifierNic) { + this.modifierNic = modifierNic; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getRoomName() { + return this.roomName; + } + + public void setRoomName(String roomName) { + this.roomName = roomName; + } + } + + @Override + public QueryAzoneByNameResponse getInstance(UnmarshallerContext context) { + return QueryAzoneByNameResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryCityRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryCityRequest.java new file mode 100644 index 0000000000..524a7e2b4b --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryCityRequest.java @@ -0,0 +1,127 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QueryCityRequest extends RpcAcsRequest { + + + private String cityEnName; + + private String cityCnName; + + private Integer offset; + + private String cityCode; + + private Integer pageSize; + + private Integer currentPage; + + private String order; + public QueryCityRequest() { + super("brinekingdom", "2019-06-27", "QueryCity"); + setMethod(MethodType.POST); + } + + public String getCityEnName() { + return this.cityEnName; + } + + public void setCityEnName(String cityEnName) { + this.cityEnName = cityEnName; + if(cityEnName != null){ + putQueryParameter("CityEnName", cityEnName); + } + } + + public String getCityCnName() { + return this.cityCnName; + } + + public void setCityCnName(String cityCnName) { + this.cityCnName = cityCnName; + if(cityCnName != null){ + putQueryParameter("CityCnName", cityCnName); + } + } + + public Integer getOffset() { + return this.offset; + } + + public void setOffset(Integer offset) { + this.offset = offset; + if(offset != null){ + putQueryParameter("Offset", offset.toString()); + } + } + + public String getCityCode() { + return this.cityCode; + } + + public void setCityCode(String cityCode) { + this.cityCode = cityCode; + if(cityCode != null){ + putQueryParameter("CityCode", cityCode); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public Integer getCurrentPage() { + return this.currentPage; + } + + public void setCurrentPage(Integer currentPage) { + this.currentPage = currentPage; + if(currentPage != null){ + putQueryParameter("CurrentPage", currentPage.toString()); + } + } + + public String getOrder() { + return this.order; + } + + public void setOrder(String order) { + this.order = order; + if(order != null){ + putQueryParameter("Order", order); + } + } + + @Override + public Class getResponseClass() { + return QueryCityResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryCityResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryCityResponse.java new file mode 100644 index 0000000000..853a17bfac --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryCityResponse.java @@ -0,0 +1,210 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QueryCityResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryCityResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String cityAlias; + + private String cityCnName; + + private String cityCode; + + private String cityEnName; + + private Long cityId; + + private String _class; + + private String creator; + + private String creatorNic; + + private Long lastUpdate; + + private String modifier; + + private String modifierNic; + + public String getCityAlias() { + return this.cityAlias; + } + + public void setCityAlias(String cityAlias) { + this.cityAlias = cityAlias; + } + + public String getCityCnName() { + return this.cityCnName; + } + + public void setCityCnName(String cityCnName) { + this.cityCnName = cityCnName; + } + + public String getCityCode() { + return this.cityCode; + } + + public void setCityCode(String cityCode) { + this.cityCode = cityCode; + } + + public String getCityEnName() { + return this.cityEnName; + } + + public void setCityEnName(String cityEnName) { + this.cityEnName = cityEnName; + } + + public Long getCityId() { + return this.cityId; + } + + public void setCityId(Long cityId) { + this.cityId = cityId; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public Long getLastUpdate() { + return this.lastUpdate; + } + + public void setLastUpdate(Long lastUpdate) { + this.lastUpdate = lastUpdate; + } + + public String getModifier() { + return this.modifier; + } + + public void setModifier(String modifier) { + this.modifier = modifier; + } + + public String getModifierNic() { + return this.modifierNic; + } + + public void setModifierNic(String modifierNic) { + this.modifierNic = modifierNic; + } + } + + @Override + public QueryCityResponse getInstance(UnmarshallerContext context) { + return QueryCityResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeRequest.java new file mode 100644 index 0000000000..d813bd8062 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QueryProjectTypeRequest extends RpcAcsRequest { + + + private String projectType; + public QueryProjectTypeRequest() { + super("brinekingdom", "2019-06-27", "QueryProjectType"); + setMethod(MethodType.POST); + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + if(projectType != null){ + putQueryParameter("ProjectType", projectType); + } + } + + @Override + public Class getResponseClass() { + return QueryProjectTypeResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeResponse.java new file mode 100644 index 0000000000..777d8c9a2d --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeResponse.java @@ -0,0 +1,140 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QueryProjectTypeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryProjectTypeResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String _class; + + private Long id; + + private String projectType; + + private String projectTypeName; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + } + + @Override + public QueryProjectTypeResponse getInstance(UnmarshallerContext context) { + return QueryProjectTypeResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleRequest.java index 5fde1e487a..a760d2ea7d 100644 --- a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleRequest.java +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleRequest.java @@ -17,7 +17,6 @@ import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; -import com.aliyuncs.brinekingdom.Endpoint; /** * @author auto create @@ -30,10 +29,6 @@ public class QueryQuotaPlanScheduleRequest extends RpcAcsRequest getQuotaPlanIdss() { diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleResponse.java index 197d5bc303..d0e70e2203 100644 --- a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleResponse.java +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleResponse.java @@ -25,31 +25,15 @@ */ public class QueryQuotaPlanScheduleResponse extends AcsResponse { - private Boolean success; - - private String errorMessage; - private String resultCode; private String requestId; - private List result; - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } + private String errorMessage; - public String getErrorMessage() { - return this.errorMessage; - } + private Boolean success; - public void setErrorMessage(String errorMessage) { - this.errorMessage = errorMessage; - } + private List result; public String getResultCode() { return this.resultCode; @@ -67,6 +51,22 @@ public void setRequestId(String requestId) { this.requestId = requestId; } + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + public List getResult() { return this.result; } @@ -77,40 +77,32 @@ public void setResult(List result) { public static class ResultItem { - private Long quotaPlanId; - - private String productCode; + private String status; private String creatorNick; - private String creatorWorkNo; - - private String configModel; - - private Integer quantity; + private Long quotaPlanId; private Long deliveryDate; + private String configModel; + private String tenantName; - private String status; + private String creatorWorkNo; - private List ladingScheduleList; + private Integer quantity; - public Long getQuotaPlanId() { - return this.quotaPlanId; - } + private String productCode; - public void setQuotaPlanId(Long quotaPlanId) { - this.quotaPlanId = quotaPlanId; - } + private List ladingScheduleList; - public String getProductCode() { - return this.productCode; + public String getStatus() { + return this.status; } - public void setProductCode(String productCode) { - this.productCode = productCode; + public void setStatus(String status) { + this.status = status; } public String getCreatorNick() { @@ -121,12 +113,20 @@ public void setCreatorNick(String creatorNick) { this.creatorNick = creatorNick; } - public String getCreatorWorkNo() { - return this.creatorWorkNo; + public Long getQuotaPlanId() { + return this.quotaPlanId; } - public void setCreatorWorkNo(String creatorWorkNo) { - this.creatorWorkNo = creatorWorkNo; + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public Long getDeliveryDate() { + return this.deliveryDate; + } + + public void setDeliveryDate(Long deliveryDate) { + this.deliveryDate = deliveryDate; } public String getConfigModel() { @@ -137,36 +137,36 @@ public void setConfigModel(String configModel) { this.configModel = configModel; } - public Integer getQuantity() { - return this.quantity; + public String getTenantName() { + return this.tenantName; } - public void setQuantity(Integer quantity) { - this.quantity = quantity; + public void setTenantName(String tenantName) { + this.tenantName = tenantName; } - public Long getDeliveryDate() { - return this.deliveryDate; + public String getCreatorWorkNo() { + return this.creatorWorkNo; } - public void setDeliveryDate(Long deliveryDate) { - this.deliveryDate = deliveryDate; + public void setCreatorWorkNo(String creatorWorkNo) { + this.creatorWorkNo = creatorWorkNo; } - public String getTenantName() { - return this.tenantName; + public Integer getQuantity() { + return this.quantity; } - public void setTenantName(String tenantName) { - this.tenantName = tenantName; + public void setQuantity(Integer quantity) { + this.quantity = quantity; } - public String getStatus() { - return this.status; + public String getProductCode() { + return this.productCode; } - public void setStatus(String status) { - this.status = status; + public void setProductCode(String productCode) { + this.productCode = productCode; } public List getLadingScheduleList() { @@ -179,22 +179,22 @@ public void setLadingScheduleList(List ladingScheduleLis public static class LadingScheduleListItem { - private String ladingId; + private String status; private Integer quantity; private Integer deliveryQuantity; - private String status; + private String ladingId; private List serverScheduleList; - public String getLadingId() { - return this.ladingId; + public String getStatus() { + return this.status; } - public void setLadingId(String ladingId) { - this.ladingId = ladingId; + public void setStatus(String status) { + this.status = status; } public Integer getQuantity() { @@ -213,12 +213,12 @@ public void setDeliveryQuantity(Integer deliveryQuantity) { this.deliveryQuantity = deliveryQuantity; } - public String getStatus() { - return this.status; + public String getLadingId() { + return this.ladingId; } - public void setStatus(String status) { - this.status = status; + public void setLadingId(String ladingId) { + this.ladingId = ladingId; } public List getServerScheduleList() { @@ -231,13 +231,21 @@ public void setServerScheduleList(List serverScheduleLis public static class ServerScheduleListItem { + private String type; + private String serialNumber; private String status; private Boolean delivery; - private String type; + public String getType() { + return this.type; + } + + public void setType(String type) { + this.type = type; + } public String getSerialNumber() { return this.serialNumber; @@ -262,14 +270,6 @@ public Boolean getDelivery() { public void setDelivery(Boolean delivery) { this.delivery = delivery; } - - public String getType() { - return this.type; - } - - public void setType(String type) { - this.type = type; - } } } } diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaRequest.java new file mode 100644 index 0000000000..2bb581a9dd --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaRequest.java @@ -0,0 +1,67 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QuerySupplyAreaRequest extends RpcAcsRequest { + + + @SerializedName("areaList") + private List areaList; + + @SerializedName("idcList") + private List idcList; + public QuerySupplyAreaRequest() { + super("brinekingdom", "2019-06-27", "QuerySupplyArea"); + setMethod(MethodType.POST); + } + + public List getAreaList() { + return this.areaList; + } + + public void setAreaList(List areaList) { + this.areaList = areaList; + if (areaList != null) { + putQueryParameter("AreaList" , new Gson().toJson(areaList)); + } + } + + public List getIdcList() { + return this.idcList; + } + + public void setIdcList(List idcList) { + this.idcList = idcList; + if (idcList != null) { + putQueryParameter("IdcList" , new Gson().toJson(idcList)); + } + } + + @Override + public Class getResponseClass() { + return QuerySupplyAreaResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaResponse.java new file mode 100644 index 0000000000..e7d5ee3a45 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaResponse.java @@ -0,0 +1,120 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QuerySupplyAreaResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QuerySupplyAreaResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private String requestId; + + private List result; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private String area; + + private String _class; + + private String country; + + private String idc; + + public String getArea() { + return this.area; + } + + public void setArea(String area) { + this.area = area; + } + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + } + + @Override + public QuerySupplyAreaResponse getInstance(UnmarshallerContext context) { + return QuerySupplyAreaResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateRequest.java new file mode 100644 index 0000000000..73b4ecb889 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateRequest.java @@ -0,0 +1,75 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class QueryTemplateRequest extends RpcAcsRequest { + + + private String osName; + + private String modelName; + + private Boolean isFactoryInstall; + public QueryTemplateRequest() { + super("brinekingdom", "2019-06-27", "QueryTemplate"); + setMethod(MethodType.POST); + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + if(osName != null){ + putQueryParameter("OsName", osName); + } + } + + public String getModelName() { + return this.modelName; + } + + public void setModelName(String modelName) { + this.modelName = modelName; + if(modelName != null){ + putQueryParameter("ModelName", modelName); + } + } + + public Boolean getIsFactoryInstall() { + return this.isFactoryInstall; + } + + public void setIsFactoryInstall(Boolean isFactoryInstall) { + this.isFactoryInstall = isFactoryInstall; + if(isFactoryInstall != null){ + putQueryParameter("IsFactoryInstall", isFactoryInstall.toString()); + } + } + + @Override + public Class getResponseClass() { + return QueryTemplateResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateResponse.java new file mode 100644 index 0000000000..dd33851fd6 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateResponse.java @@ -0,0 +1,120 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.QueryTemplateResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTemplateResponse extends AcsResponse { + + private String _class; + + private String errorMessage; + + private Boolean success; + + private String resultCode; + + private String requestId; + + private List result; + + public String get_Class() { + return this._class; + } + + public void set_Class(String _class) { + this._class = _class; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ResultItem { + + private Long id; + + private String name; + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return this.name; + } + + public void setName(String name) { + this.name = name; + } + } + + @Override + public QueryTemplateResponse getInstance(UnmarshallerContext context) { + return QueryTemplateResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ReceiveRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ReceiveRequest.java new file mode 100644 index 0000000000..4f0d78f5ce --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ReceiveRequest.java @@ -0,0 +1,1154 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import java.util.Map; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class ReceiveRequest extends RpcAcsRequest { + + + @SerializedName("demandRequestList") + private List demandRequestList; + public ReceiveRequest() { + super("brinekingdom", "2019-06-27", "Receive"); + setMethod(MethodType.POST); + } + + public List getDemandRequestList() { + return this.demandRequestList; + } + + public void setDemandRequestList(List demandRequestList) { + this.demandRequestList = demandRequestList; + if (demandRequestList != null) { + putQueryParameter("DemandRequestList" , new Gson().toJson(demandRequestList)); + } + } + + public static class DemandRequestList { + + @SerializedName("Cluster") + private String cluster; + + @SerializedName("RackInfo") + private List rackInfo; + + @SerializedName("SafeZone") + private String safeZone; + + @SerializedName("ChangeCnt") + private Integer changeCnt; + + @SerializedName("ExpectTurnOverDateStr") + private String expectTurnOverDateStr; + + @SerializedName("ProjectCode") + private String projectCode; + + @SerializedName("Source") + private String source; + + @SerializedName("SupplyLevel") + private String supplyLevel; + + @SerializedName("Operator") + private String operator; + + @SerializedName("BusinessType") + private String businessType; + + @SerializedName("ProductType") + private String productType; + + @SerializedName("Product3") + private String product3; + + @SerializedName("Features") + private Map features; + + @SerializedName("FactoryInstall") + private Boolean factoryInstall; + + @SerializedName("ShiftMethod") + private String shiftMethod; + + @SerializedName("DemandDeploy") + private DemandDeploy demandDeploy; + + @SerializedName("AssetReceiverNick") + private String assetReceiverNick; + + @SerializedName("Azone") + private String azone; + + @SerializedName("OsName") + private String osName; + + @SerializedName("ProjectTypeName") + private String projectTypeName; + + @SerializedName("Item") + private String item; + + @SerializedName("ProjectName") + private String projectName; + + @SerializedName("Idc") + private String idc; + + @SerializedName("AssetReceiver") + private String assetReceiver; + + @SerializedName("Priority") + private String priority; + + @SerializedName("SupplyCnt") + private Integer supplyCnt; + + @SerializedName("RequireType") + private String requireType; + + @SerializedName("RackPlanStrategyDTO") + private RackPlanStrategyDTO rackPlanStrategyDTO; + + @SerializedName("Install") + private Boolean install; + + @SerializedName("ModelLoad") + private Integer modelLoad; + + @SerializedName("Region") + private String region; + + @SerializedName("CloudIsolationUnit") + private String cloudIsolationUnit; + + @SerializedName("AscriptionClassName") + private String ascriptionClassName; + + @SerializedName("OsId") + private Long osId; + + @SerializedName("InstallId") + private Long installId; + + @SerializedName("FcstId") + private String fcstId; + + @SerializedName("Uid") + private String uid; + + @SerializedName("Scenario") + private String scenario; + + @SerializedName("DemandQty") + private Integer demandQty; + + @SerializedName("TenantId") + private String tenantId; + + @SerializedName("ClassZone") + private String classZone; + + @SerializedName("AscriptionClass") + private String ascriptionClass; + + @SerializedName("ProjectType") + private String projectType; + + @SerializedName("NetworkArch") + private String networkArch; + + @SerializedName("SourceId") + private String sourceId; + + @SerializedName("Comments") + private String comments; + + @SerializedName("Org") + private String org; + + @SerializedName("MoveCnt") + private Integer moveCnt; + + @SerializedName("InstallName") + private String installName; + + @SerializedName("DemandItem") + private DemandItem demandItem; + + @SerializedName("DeployProduct3") + private String deployProduct3; + + @SerializedName("BenefitOld") + private Integer benefitOld; + + @SerializedName("DemandClass") + private String demandClass; + + @SerializedName("ItemType") + private String itemType; + + @SerializedName("AppGroup") + private String appGroup; + + @SerializedName("LogicZone") + private String logicZone; + + @SerializedName("ConsistentDemandId") + private Long consistentDemandId; + + @SerializedName("ReplenishUnit") + private String replenishUnit; + + public String getCluster() { + return this.cluster; + } + + public void setCluster(String cluster) { + this.cluster = cluster; + } + + public List getRackInfo() { + return this.rackInfo; + } + + public void setRackInfo(List rackInfo) { + this.rackInfo = rackInfo; + } + + public String getSafeZone() { + return this.safeZone; + } + + public void setSafeZone(String safeZone) { + this.safeZone = safeZone; + } + + public Integer getChangeCnt() { + return this.changeCnt; + } + + public void setChangeCnt(Integer changeCnt) { + this.changeCnt = changeCnt; + } + + public String getExpectTurnOverDateStr() { + return this.expectTurnOverDateStr; + } + + public void setExpectTurnOverDateStr(String expectTurnOverDateStr) { + this.expectTurnOverDateStr = expectTurnOverDateStr; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getSupplyLevel() { + return this.supplyLevel; + } + + public void setSupplyLevel(String supplyLevel) { + this.supplyLevel = supplyLevel; + } + + public String getOperator() { + return this.operator; + } + + public void setOperator(String operator) { + this.operator = operator; + } + + public String getBusinessType() { + return this.businessType; + } + + public void setBusinessType(String businessType) { + this.businessType = businessType; + } + + public String getProductType() { + return this.productType; + } + + public void setProductType(String productType) { + this.productType = productType; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public Map getFeatures() { + return this.features; + } + + public void setFeatures(Map features) { + this.features = features; + } + + public Boolean getFactoryInstall() { + return this.factoryInstall; + } + + public void setFactoryInstall(Boolean factoryInstall) { + this.factoryInstall = factoryInstall; + } + + public String getShiftMethod() { + return this.shiftMethod; + } + + public void setShiftMethod(String shiftMethod) { + this.shiftMethod = shiftMethod; + } + + public DemandDeploy getDemandDeploy() { + return this.demandDeploy; + } + + public void setDemandDeploy(DemandDeploy demandDeploy) { + this.demandDeploy = demandDeploy; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getIdc() { + return this.idc; + } + + public void setIdc(String idc) { + this.idc = idc; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Integer getSupplyCnt() { + return this.supplyCnt; + } + + public void setSupplyCnt(Integer supplyCnt) { + this.supplyCnt = supplyCnt; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public RackPlanStrategyDTO getRackPlanStrategyDTO() { + return this.rackPlanStrategyDTO; + } + + public void setRackPlanStrategyDTO(RackPlanStrategyDTO rackPlanStrategyDTO) { + this.rackPlanStrategyDTO = rackPlanStrategyDTO; + } + + public Boolean getInstall() { + return this.install; + } + + public void setInstall(Boolean install) { + this.install = install; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getCloudIsolationUnit() { + return this.cloudIsolationUnit; + } + + public void setCloudIsolationUnit(String cloudIsolationUnit) { + this.cloudIsolationUnit = cloudIsolationUnit; + } + + public String getAscriptionClassName() { + return this.ascriptionClassName; + } + + public void setAscriptionClassName(String ascriptionClassName) { + this.ascriptionClassName = ascriptionClassName; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public String getFcstId() { + return this.fcstId; + } + + public void setFcstId(String fcstId) { + this.fcstId = fcstId; + } + + public String getUid() { + return this.uid; + } + + public void setUid(String uid) { + this.uid = uid; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public Integer getDemandQty() { + return this.demandQty; + } + + public void setDemandQty(Integer demandQty) { + this.demandQty = demandQty; + } + + public String getTenantId() { + return this.tenantId; + } + + public void setTenantId(String tenantId) { + this.tenantId = tenantId; + } + + public String getClassZone() { + return this.classZone; + } + + public void setClassZone(String classZone) { + this.classZone = classZone; + } + + public String getAscriptionClass() { + return this.ascriptionClass; + } + + public void setAscriptionClass(String ascriptionClass) { + this.ascriptionClass = ascriptionClass; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getNetworkArch() { + return this.networkArch; + } + + public void setNetworkArch(String networkArch) { + this.networkArch = networkArch; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public String getComments() { + return this.comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public Integer getMoveCnt() { + return this.moveCnt; + } + + public void setMoveCnt(Integer moveCnt) { + this.moveCnt = moveCnt; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public DemandItem getDemandItem() { + return this.demandItem; + } + + public void setDemandItem(DemandItem demandItem) { + this.demandItem = demandItem; + } + + public String getDeployProduct3() { + return this.deployProduct3; + } + + public void setDeployProduct3(String deployProduct3) { + this.deployProduct3 = deployProduct3; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public String getDemandClass() { + return this.demandClass; + } + + public void setDemandClass(String demandClass) { + this.demandClass = demandClass; + } + + public String getItemType() { + return this.itemType; + } + + public void setItemType(String itemType) { + this.itemType = itemType; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public String getLogicZone() { + return this.logicZone; + } + + public void setLogicZone(String logicZone) { + this.logicZone = logicZone; + } + + public Long getConsistentDemandId() { + return this.consistentDemandId; + } + + public void setConsistentDemandId(Long consistentDemandId) { + this.consistentDemandId = consistentDemandId; + } + + public String getReplenishUnit() { + return this.replenishUnit; + } + + public void setReplenishUnit(String replenishUnit) { + this.replenishUnit = replenishUnit; + } + + public static class DemandDeploy { + + @SerializedName("DeployRole") + private String deployRole; + + @SerializedName("NodeType") + private String nodeType; + + @SerializedName("DeployLevel") + private String deployLevel; + + @SerializedName("DeployLocation") + private String deployLocation; + + @SerializedName("FrameworkClass") + private String frameworkClass; + + public String getDeployRole() { + return this.deployRole; + } + + public void setDeployRole(String deployRole) { + this.deployRole = deployRole; + } + + public String getNodeType() { + return this.nodeType; + } + + public void setNodeType(String nodeType) { + this.nodeType = nodeType; + } + + public String getDeployLevel() { + return this.deployLevel; + } + + public void setDeployLevel(String deployLevel) { + this.deployLevel = deployLevel; + } + + public String getDeployLocation() { + return this.deployLocation; + } + + public void setDeployLocation(String deployLocation) { + this.deployLocation = deployLocation; + } + + public String getFrameworkClass() { + return this.frameworkClass; + } + + public void setFrameworkClass(String frameworkClass) { + this.frameworkClass = frameworkClass; + } + } + + public static class RackPlanStrategyDTO { + + @SerializedName("cluster") + private String cluster; + + @SerializedName("NetworkLocationDTO") + private NetworkLocationDTO networkLocationDTO; + + @SerializedName("mixLogicZone") + private String mixLogicZone; + + @SerializedName("PhysicsLocationDTO") + private PhysicsLocationDTO physicsLocationDTO; + + @SerializedName("scatterNo") + private Integer scatterNo; + + public String getCluster() { + return this.cluster; + } + + public void setCluster(String cluster) { + this.cluster = cluster; + } + + public NetworkLocationDTO getNetworkLocationDTO() { + return this.networkLocationDTO; + } + + public void setNetworkLocationDTO(NetworkLocationDTO networkLocationDTO) { + this.networkLocationDTO = networkLocationDTO; + } + + public String getMixLogicZone() { + return this.mixLogicZone; + } + + public void setMixLogicZone(String mixLogicZone) { + this.mixLogicZone = mixLogicZone; + } + + public PhysicsLocationDTO getPhysicsLocationDTO() { + return this.physicsLocationDTO; + } + + public void setPhysicsLocationDTO(PhysicsLocationDTO physicsLocationDTO) { + this.physicsLocationDTO = physicsLocationDTO; + } + + public Integer getScatterNo() { + return this.scatterNo; + } + + public void setScatterNo(Integer scatterNo) { + this.scatterNo = scatterNo; + } + + public static class NetworkLocationDTO { + + @SerializedName("pod") + private String pod; + + @SerializedName("aswList") + private List aswList; + + @SerializedName("netCluster") + private String netCluster; + + public String getPod() { + return this.pod; + } + + public void setPod(String pod) { + this.pod = pod; + } + + public List getAswList() { + return this.aswList; + } + + public void setAswList(List aswList) { + this.aswList = aswList; + } + + public String getNetCluster() { + return this.netCluster; + } + + public void setNetCluster(String netCluster) { + this.netCluster = netCluster; + } + } + + public static class PhysicsLocationDTO { + + @SerializedName("roomName") + private String roomName; + + @SerializedName("rackNameList") + private List rackNameList; + + @SerializedName("tower") + private String tower; + + public String getRoomName() { + return this.roomName; + } + + public void setRoomName(String roomName) { + this.roomName = roomName; + } + + public List getRackNameList() { + return this.rackNameList; + } + + public void setRackNameList(List rackNameList) { + this.rackNameList = rackNameList; + } + + public String getTower() { + return this.tower; + } + + public void setTower(String tower) { + this.tower = tower; + } + } + } + + public static class DemandItem { + + @SerializedName("ServerDTO") + private ServerDTO serverDTO; + + @SerializedName("ExchangeValue") + private ExchangeValue exchangeValue; + + @SerializedName("DemandItemType") + private String demandItemType; + + @SerializedName("ComboValue") + private ComboValue comboValue; + + public ServerDTO getServerDTO() { + return this.serverDTO; + } + + public void setServerDTO(ServerDTO serverDTO) { + this.serverDTO = serverDTO; + } + + public ExchangeValue getExchangeValue() { + return this.exchangeValue; + } + + public void setExchangeValue(ExchangeValue exchangeValue) { + this.exchangeValue = exchangeValue; + } + + public String getDemandItemType() { + return this.demandItemType; + } + + public void setDemandItemType(String demandItemType) { + this.demandItemType = demandItemType; + } + + public ComboValue getComboValue() { + return this.comboValue; + } + + public void setComboValue(ComboValue comboValue) { + this.comboValue = comboValue; + } + + public static class ServerDTO { + + @SerializedName("Nic") + private String nic; + + @SerializedName("Model") + private String model; + + @SerializedName("Config") + private String config; + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getConfig() { + return this.config; + } + + public void setConfig(String config) { + this.config = config; + } + } + + public static class ExchangeValue { + + @SerializedName("ExchangeList") + private List exchangeList; + + @SerializedName("ServerDemandList") + private List serverDemandList; + + public List getExchangeList() { + return this.exchangeList; + } + + public void setExchangeList(List exchangeList) { + this.exchangeList = exchangeList; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public static class ServerDemandListItem { + + @SerializedName("Item") + private String item; + + @SerializedName("Quantity") + private Integer quantity; + + @SerializedName("AppGroup") + private String appGroup; + + @SerializedName("AgreedQuantity") + private Integer agreedQuantity; + + @SerializedName("SnList") + private List snList; + + @SerializedName("Product3") + private String product3; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + } + } + + public static class ComboValue { + + @SerializedName("SkuId") + private String skuId; + + @SerializedName("ServerDemandList") + private List serverDemandList; + + public String getSkuId() { + return this.skuId; + } + + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + public List getServerDemandList() { + return this.serverDemandList; + } + + public void setServerDemandList(List serverDemandList) { + this.serverDemandList = serverDemandList; + } + + public static class ServerDemandListItem { + + @SerializedName("Item") + private String item; + + @SerializedName("Quantity") + private Integer quantity; + + @SerializedName("AppGroup") + private String appGroup; + + @SerializedName("AgreedQuantity") + private Integer agreedQuantity; + + @SerializedName("SnList") + private List snList; + + @SerializedName("Product3") + private String product3; + + public String getItem() { + return this.item; + } + + public void setItem(String item) { + this.item = item; + } + + public Integer getQuantity() { + return this.quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getAppGroup() { + return this.appGroup; + } + + public void setAppGroup(String appGroup) { + this.appGroup = appGroup; + } + + public Integer getAgreedQuantity() { + return this.agreedQuantity; + } + + public void setAgreedQuantity(Integer agreedQuantity) { + this.agreedQuantity = agreedQuantity; + } + + public List getSnList() { + return this.snList; + } + + public void setSnList(List snList) { + this.snList = snList; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + } + } + } + } + + @Override + public Class getResponseClass() { + return ReceiveResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ReceiveResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ReceiveResponse.java new file mode 100644 index 0000000000..4002ba3fef --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/ReceiveResponse.java @@ -0,0 +1,130 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.ReceiveResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ReceiveResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private String requestId; + + private List result; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getResult() { + return this.result; + } + + public void setResult(List result) { + this.result = result; + } + + public static class ConsistentDemandResponseList { + + private Long consistentDemandId; + + private String errorMsg; + + private String source; + + private String sourceId; + + private Boolean success; + + public Long getConsistentDemandId() { + return this.consistentDemandId; + } + + public void setConsistentDemandId(Long consistentDemandId) { + this.consistentDemandId = consistentDemandId; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + } + + @Override + public ReceiveResponse getInstance(UnmarshallerContext context) { + return ReceiveResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseRequest.java new file mode 100644 index 0000000000..d42bcf00b8 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseRequest.java @@ -0,0 +1,960 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class RequestDemandReverseRequest extends RpcAcsRequest { + + + private Long demandId; + + @SerializedName("dataList") + private List dataList; + public RequestDemandReverseRequest() { + super("brinekingdom", "2019-06-27", "RequestDemandReverse"); + setMethod(MethodType.POST); + } + + public Long getDemandId() { + return this.demandId; + } + + public void setDemandId(Long demandId) { + this.demandId = demandId; + if(demandId != null){ + putQueryParameter("DemandId", demandId.toString()); + } + } + + public List getDataList() { + return this.dataList; + } + + public void setDataList(List dataList) { + this.dataList = dataList; + if (dataList != null) { + putQueryParameter("DataList" , new Gson().toJson(dataList)); + } + } + + public static class DataList { + + @SerializedName("Country") + private String country; + + @SerializedName("ClassZoneCode") + private String classZoneCode; + + @SerializedName("ProjectCode") + private String projectCode; + + @SerializedName("Product2") + private String product2; + + @SerializedName("Product1") + private String product1; + + @SerializedName("Nic") + private String nic; + + @SerializedName("BusinessModeName") + private String businessModeName; + + @SerializedName("LogicZoneCode") + private String logicZoneCode; + + @SerializedName("PlanType") + private Integer planType; + + @SerializedName("Product3") + private String product3; + + @SerializedName("MachineType") + private String machineType; + + @SerializedName("BusinessMode") + private String businessMode; + + @SerializedName("HighCnt") + private Integer highCnt; + + @SerializedName("SafeZoneName") + private String safeZoneName; + + @SerializedName("LogicZoneName") + private String logicZoneName; + + @SerializedName("Id") + private Long id; + + @SerializedName("AssetReceiverNick") + private String assetReceiverNick; + + @SerializedName("Azone") + private String azone; + + @SerializedName("OsName") + private String osName; + + @SerializedName("SubLine") + private String subLine; + + @SerializedName("ReverseType") + private String reverseType; + + @SerializedName("ProjectTypeName") + private String projectTypeName; + + @SerializedName("CbmDemander") + private String cbmDemander; + + @SerializedName("ProjectName") + private String projectName; + + @SerializedName("NetArch") + private String netArch; + + @SerializedName("Product3Name") + private String product3Name; + + @SerializedName("NewPlanId") + private Long newPlanId; + + @SerializedName("ManufacturerBrand") + private Long manufacturerBrand; + + @SerializedName("AssetReceiver") + private String assetReceiver; + + @SerializedName("LadingStatus") + private Integer ladingStatus; + + @SerializedName("Priority") + private String priority; + + @SerializedName("DemandStatus") + private Integer demandStatus; + + @SerializedName("AppGroupName") + private String appGroupName; + + @SerializedName("RequireType") + private String requireType; + + @SerializedName("ClassZoneName") + private String classZoneName; + + @SerializedName("Install") + private Integer install; + + @SerializedName("CmC") + private String cmC; + + @SerializedName("BusinessName") + private String businessName; + + @SerializedName("OutId") + private String outId; + + @SerializedName("ModelLoad") + private Integer modelLoad; + + @SerializedName("Region") + private String region; + + @SerializedName("ScStatus") + private String scStatus; + + @SerializedName("Product1Name") + private String product1Name; + + @SerializedName("ReverseStatus") + private String reverseStatus; + + @SerializedName("StockStatus") + private String stockStatus; + + @SerializedName("CmP") + private String cmP; + + @SerializedName("CmU") + private String cmU; + + @SerializedName("OsId") + private Long osId; + + @SerializedName("ManufacturerBrandName") + private String manufacturerBrandName; + + @SerializedName("Error") + private String error; + + @SerializedName("CmV") + private String cmV; + + @SerializedName("InstallId") + private Long installId; + + @SerializedName("QuotaPlanId") + private Long quotaPlanId; + + @SerializedName("CloudDeployProduct1Name") + private String cloudDeployProduct1Name; + + @SerializedName("DcosStatus") + private String dcosStatus; + + @SerializedName("Product2Name") + private String product2Name; + + @SerializedName("RequireTypeName") + private String requireTypeName; + + @SerializedName("Scenario") + private String scenario; + + @SerializedName("NakedDelivery") + private Integer nakedDelivery; + + @SerializedName("CloudDeployProduct3") + private String cloudDeployProduct3; + + @SerializedName("ProjectType") + private String projectType; + + @SerializedName("SubLineName") + private String subLineName; + + @SerializedName("AppGroupId") + private Long appGroupId; + + @SerializedName("PlanChangeReason") + private String planChangeReason; + + @SerializedName("Creator") + private String creator; + + @SerializedName("Business") + private String business; + + @SerializedName("Org") + private String org; + + @SerializedName("Cnt") + private Integer cnt; + + @SerializedName("InstallName") + private String installName; + + @SerializedName("CreatorNic") + private String creatorNic; + + @SerializedName("SafeZoneCode") + private String safeZoneCode; + + @SerializedName("TimeStr") + private String timeStr; + + @SerializedName("CloudDeployProduct2Name") + private String cloudDeployProduct2Name; + + @SerializedName("BenefitOld") + private Integer benefitOld; + + @SerializedName("OriginId") + private Long originId; + + @SerializedName("SafeYear") + private String safeYear; + + @SerializedName("AddStatus") + private String addStatus; + + @SerializedName("ProcessId") + private String processId; + + @SerializedName("Comment") + private String comment; + + @SerializedName("RoomCode") + private String roomCode; + + @SerializedName("CloudDeployProduct3Name") + private String cloudDeployProduct3Name; + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public String getClassZoneCode() { + return this.classZoneCode; + } + + public void setClassZoneCode(String classZoneCode) { + this.classZoneCode = classZoneCode; + } + + public String getProjectCode() { + return this.projectCode; + } + + public void setProjectCode(String projectCode) { + this.projectCode = projectCode; + } + + public String getProduct2() { + return this.product2; + } + + public void setProduct2(String product2) { + this.product2 = product2; + } + + public String getProduct1() { + return this.product1; + } + + public void setProduct1(String product1) { + this.product1 = product1; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getBusinessModeName() { + return this.businessModeName; + } + + public void setBusinessModeName(String businessModeName) { + this.businessModeName = businessModeName; + } + + public String getLogicZoneCode() { + return this.logicZoneCode; + } + + public void setLogicZoneCode(String logicZoneCode) { + this.logicZoneCode = logicZoneCode; + } + + public Integer getPlanType() { + return this.planType; + } + + public void setPlanType(Integer planType) { + this.planType = planType; + } + + public String getProduct3() { + return this.product3; + } + + public void setProduct3(String product3) { + this.product3 = product3; + } + + public String getMachineType() { + return this.machineType; + } + + public void setMachineType(String machineType) { + this.machineType = machineType; + } + + public String getBusinessMode() { + return this.businessMode; + } + + public void setBusinessMode(String businessMode) { + this.businessMode = businessMode; + } + + public Integer getHighCnt() { + return this.highCnt; + } + + public void setHighCnt(Integer highCnt) { + this.highCnt = highCnt; + } + + public String getSafeZoneName() { + return this.safeZoneName; + } + + public void setSafeZoneName(String safeZoneName) { + this.safeZoneName = safeZoneName; + } + + public String getLogicZoneName() { + return this.logicZoneName; + } + + public void setLogicZoneName(String logicZoneName) { + this.logicZoneName = logicZoneName; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getAssetReceiverNick() { + return this.assetReceiverNick; + } + + public void setAssetReceiverNick(String assetReceiverNick) { + this.assetReceiverNick = assetReceiverNick; + } + + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getSubLine() { + return this.subLine; + } + + public void setSubLine(String subLine) { + this.subLine = subLine; + } + + public String getReverseType() { + return this.reverseType; + } + + public void setReverseType(String reverseType) { + this.reverseType = reverseType; + } + + public String getProjectTypeName() { + return this.projectTypeName; + } + + public void setProjectTypeName(String projectTypeName) { + this.projectTypeName = projectTypeName; + } + + public String getCbmDemander() { + return this.cbmDemander; + } + + public void setCbmDemander(String cbmDemander) { + this.cbmDemander = cbmDemander; + } + + public String getProjectName() { + return this.projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getNetArch() { + return this.netArch; + } + + public void setNetArch(String netArch) { + this.netArch = netArch; + } + + public String getProduct3Name() { + return this.product3Name; + } + + public void setProduct3Name(String product3Name) { + this.product3Name = product3Name; + } + + public Long getNewPlanId() { + return this.newPlanId; + } + + public void setNewPlanId(Long newPlanId) { + this.newPlanId = newPlanId; + } + + public Long getManufacturerBrand() { + return this.manufacturerBrand; + } + + public void setManufacturerBrand(Long manufacturerBrand) { + this.manufacturerBrand = manufacturerBrand; + } + + public String getAssetReceiver() { + return this.assetReceiver; + } + + public void setAssetReceiver(String assetReceiver) { + this.assetReceiver = assetReceiver; + } + + public Integer getLadingStatus() { + return this.ladingStatus; + } + + public void setLadingStatus(Integer ladingStatus) { + this.ladingStatus = ladingStatus; + } + + public String getPriority() { + return this.priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Integer getDemandStatus() { + return this.demandStatus; + } + + public void setDemandStatus(Integer demandStatus) { + this.demandStatus = demandStatus; + } + + public String getAppGroupName() { + return this.appGroupName; + } + + public void setAppGroupName(String appGroupName) { + this.appGroupName = appGroupName; + } + + public String getRequireType() { + return this.requireType; + } + + public void setRequireType(String requireType) { + this.requireType = requireType; + } + + public String getClassZoneName() { + return this.classZoneName; + } + + public void setClassZoneName(String classZoneName) { + this.classZoneName = classZoneName; + } + + public Integer getInstall() { + return this.install; + } + + public void setInstall(Integer install) { + this.install = install; + } + + public String getCmC() { + return this.cmC; + } + + public void setCmC(String cmC) { + this.cmC = cmC; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public String getOutId() { + return this.outId; + } + + public void setOutId(String outId) { + this.outId = outId; + } + + public Integer getModelLoad() { + return this.modelLoad; + } + + public void setModelLoad(Integer modelLoad) { + this.modelLoad = modelLoad; + } + + public String getRegion() { + return this.region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getScStatus() { + return this.scStatus; + } + + public void setScStatus(String scStatus) { + this.scStatus = scStatus; + } + + public String getProduct1Name() { + return this.product1Name; + } + + public void setProduct1Name(String product1Name) { + this.product1Name = product1Name; + } + + public String getReverseStatus() { + return this.reverseStatus; + } + + public void setReverseStatus(String reverseStatus) { + this.reverseStatus = reverseStatus; + } + + public String getStockStatus() { + return this.stockStatus; + } + + public void setStockStatus(String stockStatus) { + this.stockStatus = stockStatus; + } + + public String getCmP() { + return this.cmP; + } + + public void setCmP(String cmP) { + this.cmP = cmP; + } + + public String getCmU() { + return this.cmU; + } + + public void setCmU(String cmU) { + this.cmU = cmU; + } + + public Long getOsId() { + return this.osId; + } + + public void setOsId(Long osId) { + this.osId = osId; + } + + public String getManufacturerBrandName() { + return this.manufacturerBrandName; + } + + public void setManufacturerBrandName(String manufacturerBrandName) { + this.manufacturerBrandName = manufacturerBrandName; + } + + public String getError() { + return this.error; + } + + public void setError(String error) { + this.error = error; + } + + public String getCmV() { + return this.cmV; + } + + public void setCmV(String cmV) { + this.cmV = cmV; + } + + public Long getInstallId() { + return this.installId; + } + + public void setInstallId(Long installId) { + this.installId = installId; + } + + public Long getQuotaPlanId() { + return this.quotaPlanId; + } + + public void setQuotaPlanId(Long quotaPlanId) { + this.quotaPlanId = quotaPlanId; + } + + public String getCloudDeployProduct1Name() { + return this.cloudDeployProduct1Name; + } + + public void setCloudDeployProduct1Name(String cloudDeployProduct1Name) { + this.cloudDeployProduct1Name = cloudDeployProduct1Name; + } + + public String getDcosStatus() { + return this.dcosStatus; + } + + public void setDcosStatus(String dcosStatus) { + this.dcosStatus = dcosStatus; + } + + public String getProduct2Name() { + return this.product2Name; + } + + public void setProduct2Name(String product2Name) { + this.product2Name = product2Name; + } + + public String getRequireTypeName() { + return this.requireTypeName; + } + + public void setRequireTypeName(String requireTypeName) { + this.requireTypeName = requireTypeName; + } + + public String getScenario() { + return this.scenario; + } + + public void setScenario(String scenario) { + this.scenario = scenario; + } + + public Integer getNakedDelivery() { + return this.nakedDelivery; + } + + public void setNakedDelivery(Integer nakedDelivery) { + this.nakedDelivery = nakedDelivery; + } + + public String getCloudDeployProduct3() { + return this.cloudDeployProduct3; + } + + public void setCloudDeployProduct3(String cloudDeployProduct3) { + this.cloudDeployProduct3 = cloudDeployProduct3; + } + + public String getProjectType() { + return this.projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getSubLineName() { + return this.subLineName; + } + + public void setSubLineName(String subLineName) { + this.subLineName = subLineName; + } + + public Long getAppGroupId() { + return this.appGroupId; + } + + public void setAppGroupId(Long appGroupId) { + this.appGroupId = appGroupId; + } + + public String getPlanChangeReason() { + return this.planChangeReason; + } + + public void setPlanChangeReason(String planChangeReason) { + this.planChangeReason = planChangeReason; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getBusiness() { + return this.business; + } + + public void setBusiness(String business) { + this.business = business; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public Integer getCnt() { + return this.cnt; + } + + public void setCnt(Integer cnt) { + this.cnt = cnt; + } + + public String getInstallName() { + return this.installName; + } + + public void setInstallName(String installName) { + this.installName = installName; + } + + public String getCreatorNic() { + return this.creatorNic; + } + + public void setCreatorNic(String creatorNic) { + this.creatorNic = creatorNic; + } + + public String getSafeZoneCode() { + return this.safeZoneCode; + } + + public void setSafeZoneCode(String safeZoneCode) { + this.safeZoneCode = safeZoneCode; + } + + public String getTimeStr() { + return this.timeStr; + } + + public void setTimeStr(String timeStr) { + this.timeStr = timeStr; + } + + public String getCloudDeployProduct2Name() { + return this.cloudDeployProduct2Name; + } + + public void setCloudDeployProduct2Name(String cloudDeployProduct2Name) { + this.cloudDeployProduct2Name = cloudDeployProduct2Name; + } + + public Integer getBenefitOld() { + return this.benefitOld; + } + + public void setBenefitOld(Integer benefitOld) { + this.benefitOld = benefitOld; + } + + public Long getOriginId() { + return this.originId; + } + + public void setOriginId(Long originId) { + this.originId = originId; + } + + public String getSafeYear() { + return this.safeYear; + } + + public void setSafeYear(String safeYear) { + this.safeYear = safeYear; + } + + public String getAddStatus() { + return this.addStatus; + } + + public void setAddStatus(String addStatus) { + this.addStatus = addStatus; + } + + public String getProcessId() { + return this.processId; + } + + public void setProcessId(String processId) { + this.processId = processId; + } + + public String getComment() { + return this.comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + + public String getCloudDeployProduct3Name() { + return this.cloudDeployProduct3Name; + } + + public void setCloudDeployProduct3Name(String cloudDeployProduct3Name) { + this.cloudDeployProduct3Name = cloudDeployProduct3Name; + } + } + + @Override + public Class getResponseClass() { + return RequestDemandReverseResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseResponse.java new file mode 100644 index 0000000000..751ec8b6ba --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseResponse.java @@ -0,0 +1,96 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.RequestDemandReverseResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class RequestDemandReverseResponse extends AcsResponse { + + private String traceId; + + private String errorMessage; + + private String resultCode; + + private Boolean success; + + private Boolean result; + + private String requestId; + + public String getTraceId() { + return this.traceId; + } + + public void setTraceId(String traceId) { + this.traceId = traceId; + } + + public String getErrorMessage() { + return this.errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Boolean getResult() { + return this.result; + } + + public void setResult(Boolean result) { + this.result = result; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public RequestDemandReverseResponse getInstance(UnmarshallerContext context) { + return RequestDemandReverseResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultRequest.java index 623ec7f416..cc544aade5 100644 --- a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultRequest.java +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultRequest.java @@ -18,7 +18,6 @@ import java.util.List; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; -import com.aliyuncs.brinekingdom.Endpoint; /** * @author auto create @@ -42,10 +41,6 @@ public SubmitPlanningResultRequest() { super("brinekingdom", "2019-06-27", "SubmitPlanningResult"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); - try { - com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); - com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); - } catch (Exception e) {} } public Integer getRequireCnt() { @@ -129,12 +124,12 @@ public void setResourceMethods(List resourceMethods) { putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".Product3" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getProduct3()); } } - putQueryParameter("ResourceMethod." + (depth1 + 1) + ".RoomCode" , resourceMethods.get(depth1).getRoomCode()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Comment" , resourceMethods.get(depth1).getComment()); + putQueryParameter("ResourceMethod." + (depth1 + 1) + ".RoomCode" , resourceMethods.get(depth1).getRoomCode()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Region" , resourceMethods.get(depth1).getRegion()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".ConvertHostType" , resourceMethods.get(depth1).getConvertHostType()); - putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Azone" , resourceMethods.get(depth1).getAzone()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".GapCnt" , resourceMethods.get(depth1).getGapCnt()); + putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Azone" , resourceMethods.get(depth1).getAzone()); } } } @@ -151,18 +146,18 @@ public static class ResourceMethod { private List supplyPlans; - private String roomCode; - private String comment; + private String roomCode; + private String region; private String convertHostType; - private String azone; - private Integer gapCnt; + private String azone; + public String getFinalAvzone() { return this.finalAvzone; } @@ -203,14 +198,6 @@ public void setSupplyPlans(List supplyPlans) { this.supplyPlans = supplyPlans; } - public String getRoomCode() { - return this.roomCode; - } - - public void setRoomCode(String roomCode) { - this.roomCode = roomCode; - } - public String getComment() { return this.comment; } @@ -219,6 +206,14 @@ public void setComment(String comment) { this.comment = comment; } + public String getRoomCode() { + return this.roomCode; + } + + public void setRoomCode(String roomCode) { + this.roomCode = roomCode; + } + public String getRegion() { return this.region; } @@ -235,14 +230,6 @@ public void setConvertHostType(String convertHostType) { this.convertHostType = convertHostType; } - public String getAzone() { - return this.azone; - } - - public void setAzone(String azone) { - this.azone = azone; - } - public Integer getGapCnt() { return this.gapCnt; } @@ -251,6 +238,14 @@ public void setGapCnt(Integer gapCnt) { this.gapCnt = gapCnt; } + public String getAzone() { + return this.azone; + } + + public void setAzone(String azone) { + this.azone = azone; + } + public static class SupplyPlan { private String safeZone; diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultResponse.java index 0027579a29..157302e65b 100644 --- a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultResponse.java +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultResponse.java @@ -24,21 +24,13 @@ */ public class SubmitPlanningResultResponse extends AcsResponse { - private String requestId; - private String code; private String message; - private Boolean success; - - public String getRequestId() { - return this.requestId; - } + private String requestId; - public void setRequestId(String requestId) { - this.requestId = requestId; - } + private Boolean success; public String getCode() { return this.code; @@ -56,6 +48,14 @@ public void setMessage(String message) { this.message = message; } + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + public Boolean getSuccess() { return this.success; } diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/TrackRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/TrackRequest.java new file mode 100644 index 0000000000..efc3217dba --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/TrackRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class TrackRequest extends RpcAcsRequest { + + + private Long demandId; + public TrackRequest() { + super("brinekingdom", "2019-06-27", "Track"); + setMethod(MethodType.POST); + } + + public Long getDemandId() { + return this.demandId; + } + + public void setDemandId(Long demandId) { + this.demandId = demandId; + if(demandId != null){ + putQueryParameter("DemandId", demandId.toString()); + } + } + + @Override + public Class getResponseClass() { + return TrackResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/TrackResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/TrackResponse.java new file mode 100644 index 0000000000..0f2e3aad62 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/TrackResponse.java @@ -0,0 +1,699 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.TrackResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class TrackResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private String requestId; + + private List dataList; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getDataList() { + return this.dataList; + } + + public void setDataList(List dataList) { + this.dataList = dataList; + } + + public static class DataListItem { + + private Integer moveQty; + + private String sourceId; + + private Long demandId; + + private Integer supplyQty; + + private Long expectDate; + + private String demandStatus; + + private String source; + + private List progressList; + + public Integer getMoveQty() { + return this.moveQty; + } + + public void setMoveQty(Integer moveQty) { + this.moveQty = moveQty; + } + + public String getSourceId() { + return this.sourceId; + } + + public void setSourceId(String sourceId) { + this.sourceId = sourceId; + } + + public Long getDemandId() { + return this.demandId; + } + + public void setDemandId(Long demandId) { + this.demandId = demandId; + } + + public Integer getSupplyQty() { + return this.supplyQty; + } + + public void setSupplyQty(Integer supplyQty) { + this.supplyQty = supplyQty; + } + + public Long getExpectDate() { + return this.expectDate; + } + + public void setExpectDate(Long expectDate) { + this.expectDate = expectDate; + } + + public String getDemandStatus() { + return this.demandStatus; + } + + public void setDemandStatus(String demandStatus) { + this.demandStatus = demandStatus; + } + + public String getSource() { + return this.source; + } + + public void setSource(String source) { + this.source = source; + } + + public List getProgressList() { + return this.progressList; + } + + public void setProgressList(List progressList) { + this.progressList = progressList; + } + + public static class ProgressListItem { + + private Long realDeliveryDate; + + private String orderErrorMsg; + + private Long slaDeliveryDate; + + private Long ladingCnt; + + private String orderNumber; + + private Long expectDate; + + private Long dealCnt; + + private String deliveryStatus; + + private Long deliveryCnt; + + private String rackStatus; + + private String deliveryType; + + private List fcstDeliveryList; + + private List deliveryInfoList; + + public Long getRealDeliveryDate() { + return this.realDeliveryDate; + } + + public void setRealDeliveryDate(Long realDeliveryDate) { + this.realDeliveryDate = realDeliveryDate; + } + + public String getOrderErrorMsg() { + return this.orderErrorMsg; + } + + public void setOrderErrorMsg(String orderErrorMsg) { + this.orderErrorMsg = orderErrorMsg; + } + + public Long getSlaDeliveryDate() { + return this.slaDeliveryDate; + } + + public void setSlaDeliveryDate(Long slaDeliveryDate) { + this.slaDeliveryDate = slaDeliveryDate; + } + + public Long getLadingCnt() { + return this.ladingCnt; + } + + public void setLadingCnt(Long ladingCnt) { + this.ladingCnt = ladingCnt; + } + + public String getOrderNumber() { + return this.orderNumber; + } + + public void setOrderNumber(String orderNumber) { + this.orderNumber = orderNumber; + } + + public Long getExpectDate() { + return this.expectDate; + } + + public void setExpectDate(Long expectDate) { + this.expectDate = expectDate; + } + + public Long getDealCnt() { + return this.dealCnt; + } + + public void setDealCnt(Long dealCnt) { + this.dealCnt = dealCnt; + } + + public String getDeliveryStatus() { + return this.deliveryStatus; + } + + public void setDeliveryStatus(String deliveryStatus) { + this.deliveryStatus = deliveryStatus; + } + + public Long getDeliveryCnt() { + return this.deliveryCnt; + } + + public void setDeliveryCnt(Long deliveryCnt) { + this.deliveryCnt = deliveryCnt; + } + + public String getRackStatus() { + return this.rackStatus; + } + + public void setRackStatus(String rackStatus) { + this.rackStatus = rackStatus; + } + + public String getDeliveryType() { + return this.deliveryType; + } + + public void setDeliveryType(String deliveryType) { + this.deliveryType = deliveryType; + } + + public List getFcstDeliveryList() { + return this.fcstDeliveryList; + } + + public void setFcstDeliveryList(List fcstDeliveryList) { + this.fcstDeliveryList = fcstDeliveryList; + } + + public List getDeliveryInfoList() { + return this.deliveryInfoList; + } + + public void setDeliveryInfoList(List deliveryInfoList) { + this.deliveryInfoList = deliveryInfoList; + } + + public static class FcstDeliveryListItem { + + private Long fcstDeliveryDate; + + private Integer fcstDeliveryCnt; + + public Long getFcstDeliveryDate() { + return this.fcstDeliveryDate; + } + + public void setFcstDeliveryDate(Long fcstDeliveryDate) { + this.fcstDeliveryDate = fcstDeliveryDate; + } + + public Integer getFcstDeliveryCnt() { + return this.fcstDeliveryCnt; + } + + public void setFcstDeliveryCnt(Integer fcstDeliveryCnt) { + this.fcstDeliveryCnt = fcstDeliveryCnt; + } + } + + public static class DeliveryInfoListItem { + + private String deviceSource; + + private String brandCode; + + private String orderNumber; + + private String creator; + + private Long ladingOrderTime; + + private String transferTypeDES; + + private String securityDomain; + + private String idcName; + + private String parentFactoryModelName; + + private Long finishTime; + + private String receiveType; + + private Integer loading; + + private String logicZone; + + private String networkType; + + private String logicZoneName; + + private String templateName; + + private Boolean keepData; + + private String modelName; + + private String roomName; + + private String transferNumber; + + private String batchNumber; + + private String poNumber; + + private String osName; + + private String errorInfo; + + private String prNumber; + + private String shipNumber; + + private Boolean installSwitch; + + private String businessLabel; + + private Integer transferType; + + private String progressStepEnum; + + private Long preInputTime; + + private Long gmtCreate; + + private String transferName; + + private String sourceAppGroup; + + private String sourceIdcName; + + private String rackName; + + private String sn; + + private String appGroupName; + + public String getDeviceSource() { + return this.deviceSource; + } + + public void setDeviceSource(String deviceSource) { + this.deviceSource = deviceSource; + } + + public String getBrandCode() { + return this.brandCode; + } + + public void setBrandCode(String brandCode) { + this.brandCode = brandCode; + } + + public String getOrderNumber() { + return this.orderNumber; + } + + public void setOrderNumber(String orderNumber) { + this.orderNumber = orderNumber; + } + + public String getCreator() { + return this.creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public Long getLadingOrderTime() { + return this.ladingOrderTime; + } + + public void setLadingOrderTime(Long ladingOrderTime) { + this.ladingOrderTime = ladingOrderTime; + } + + public String getTransferTypeDES() { + return this.transferTypeDES; + } + + public void setTransferTypeDES(String transferTypeDES) { + this.transferTypeDES = transferTypeDES; + } + + public String getSecurityDomain() { + return this.securityDomain; + } + + public void setSecurityDomain(String securityDomain) { + this.securityDomain = securityDomain; + } + + public String getIdcName() { + return this.idcName; + } + + public void setIdcName(String idcName) { + this.idcName = idcName; + } + + public String getParentFactoryModelName() { + return this.parentFactoryModelName; + } + + public void setParentFactoryModelName(String parentFactoryModelName) { + this.parentFactoryModelName = parentFactoryModelName; + } + + public Long getFinishTime() { + return this.finishTime; + } + + public void setFinishTime(Long finishTime) { + this.finishTime = finishTime; + } + + public String getReceiveType() { + return this.receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public Integer getLoading() { + return this.loading; + } + + public void setLoading(Integer loading) { + this.loading = loading; + } + + public String getLogicZone() { + return this.logicZone; + } + + public void setLogicZone(String logicZone) { + this.logicZone = logicZone; + } + + public String getNetworkType() { + return this.networkType; + } + + public void setNetworkType(String networkType) { + this.networkType = networkType; + } + + public String getLogicZoneName() { + return this.logicZoneName; + } + + public void setLogicZoneName(String logicZoneName) { + this.logicZoneName = logicZoneName; + } + + public String getTemplateName() { + return this.templateName; + } + + public void setTemplateName(String templateName) { + this.templateName = templateName; + } + + public Boolean getKeepData() { + return this.keepData; + } + + public void setKeepData(Boolean keepData) { + this.keepData = keepData; + } + + public String getModelName() { + return this.modelName; + } + + public void setModelName(String modelName) { + this.modelName = modelName; + } + + public String getRoomName() { + return this.roomName; + } + + public void setRoomName(String roomName) { + this.roomName = roomName; + } + + public String getTransferNumber() { + return this.transferNumber; + } + + public void setTransferNumber(String transferNumber) { + this.transferNumber = transferNumber; + } + + public String getBatchNumber() { + return this.batchNumber; + } + + public void setBatchNumber(String batchNumber) { + this.batchNumber = batchNumber; + } + + public String getPoNumber() { + return this.poNumber; + } + + public void setPoNumber(String poNumber) { + this.poNumber = poNumber; + } + + public String getOsName() { + return this.osName; + } + + public void setOsName(String osName) { + this.osName = osName; + } + + public String getErrorInfo() { + return this.errorInfo; + } + + public void setErrorInfo(String errorInfo) { + this.errorInfo = errorInfo; + } + + public String getPrNumber() { + return this.prNumber; + } + + public void setPrNumber(String prNumber) { + this.prNumber = prNumber; + } + + public String getShipNumber() { + return this.shipNumber; + } + + public void setShipNumber(String shipNumber) { + this.shipNumber = shipNumber; + } + + public Boolean getInstallSwitch() { + return this.installSwitch; + } + + public void setInstallSwitch(Boolean installSwitch) { + this.installSwitch = installSwitch; + } + + public String getBusinessLabel() { + return this.businessLabel; + } + + public void setBusinessLabel(String businessLabel) { + this.businessLabel = businessLabel; + } + + public Integer getTransferType() { + return this.transferType; + } + + public void setTransferType(Integer transferType) { + this.transferType = transferType; + } + + public String getProgressStepEnum() { + return this.progressStepEnum; + } + + public void setProgressStepEnum(String progressStepEnum) { + this.progressStepEnum = progressStepEnum; + } + + public Long getPreInputTime() { + return this.preInputTime; + } + + public void setPreInputTime(Long preInputTime) { + this.preInputTime = preInputTime; + } + + public Long getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(Long gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getTransferName() { + return this.transferName; + } + + public void setTransferName(String transferName) { + this.transferName = transferName; + } + + public String getSourceAppGroup() { + return this.sourceAppGroup; + } + + public void setSourceAppGroup(String sourceAppGroup) { + this.sourceAppGroup = sourceAppGroup; + } + + public String getSourceIdcName() { + return this.sourceIdcName; + } + + public void setSourceIdcName(String sourceIdcName) { + this.sourceIdcName = sourceIdcName; + } + + public String getRackName() { + return this.rackName; + } + + public void setRackName(String rackName) { + this.rackName = rackName; + } + + public String getSn() { + return this.sn; + } + + public void setSn(String sn) { + this.sn = sn; + } + + public String getAppGroupName() { + return this.appGroupName; + } + + public void setAppGroupName(String appGroupName) { + this.appGroupName = appGroupName; + } + } + } + } + + @Override + public TrackResponse getInstance(UnmarshallerContext context) { + return TrackResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaRequest.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaRequest.java new file mode 100644 index 0000000000..69320aa221 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaRequest.java @@ -0,0 +1,101 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; + +/** + * @author auto create + * @version + */ +public class WeeksSummaryQuotaRequest extends RpcAcsRequest { + + + private String org; + + private String supplyArea; + + private String nic; + + private String model; + + private String expectDateStr; + public WeeksSummaryQuotaRequest() { + super("brinekingdom", "2019-06-27", "WeeksSummaryQuota"); + setMethod(MethodType.POST); + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + if(org != null){ + putQueryParameter("Org", org); + } + } + + public String getSupplyArea() { + return this.supplyArea; + } + + public void setSupplyArea(String supplyArea) { + this.supplyArea = supplyArea; + if(supplyArea != null){ + putQueryParameter("SupplyArea", supplyArea); + } + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + if(nic != null){ + putQueryParameter("Nic", nic); + } + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + if(model != null){ + putQueryParameter("Model", model); + } + } + + public String getExpectDateStr() { + return this.expectDateStr; + } + + public void setExpectDateStr(String expectDateStr) { + this.expectDateStr = expectDateStr; + if(expectDateStr != null){ + putQueryParameter("ExpectDateStr", expectDateStr); + } + } + + @Override + public Class getResponseClass() { + return WeeksSummaryQuotaResponse.class; + } + +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaResponse.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaResponse.java new file mode 100644 index 0000000000..b31f4a12e0 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaResponse.java @@ -0,0 +1,149 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.model.v20190627; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.brinekingdom.transform.v20190627.WeeksSummaryQuotaResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class WeeksSummaryQuotaResponse extends AcsResponse { + + private String message; + + private Boolean success; + + private Result result; + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Result getResult() { + return this.result; + } + + public void setResult(Result result) { + this.result = result; + } + + public static class Result { + + private Long expectDate; + + private Long forecastTotal; + + private String model; + + private String nic; + + private String orgName; + + private Long plannedAvailable; + + private Long replenishable; + + private Long supplyCnt; + + public Long getExpectDate() { + return this.expectDate; + } + + public void setExpectDate(Long expectDate) { + this.expectDate = expectDate; + } + + public Long getForecastTotal() { + return this.forecastTotal; + } + + public void setForecastTotal(Long forecastTotal) { + this.forecastTotal = forecastTotal; + } + + public String getModel() { + return this.model; + } + + public void setModel(String model) { + this.model = model; + } + + public String getNic() { + return this.nic; + } + + public void setNic(String nic) { + this.nic = nic; + } + + public String getOrgName() { + return this.orgName; + } + + public void setOrgName(String orgName) { + this.orgName = orgName; + } + + public Long getPlannedAvailable() { + return this.plannedAvailable; + } + + public void setPlannedAvailable(Long plannedAvailable) { + this.plannedAvailable = plannedAvailable; + } + + public Long getReplenishable() { + return this.replenishable; + } + + public void setReplenishable(Long replenishable) { + this.replenishable = replenishable; + } + + public Long getSupplyCnt() { + return this.supplyCnt; + } + + public void setSupplyCnt(Long supplyCnt) { + this.supplyCnt = supplyCnt; + } + } + + @Override + public WeeksSummaryQuotaResponse getInstance(UnmarshallerContext context) { + return WeeksSummaryQuotaResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/CheckReceiveResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/CheckReceiveResponseUnmarshaller.java new file mode 100644 index 0000000000..5d4db18a7a --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/CheckReceiveResponseUnmarshaller.java @@ -0,0 +1,48 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.CheckReceiveResponse; +import com.aliyuncs.brinekingdom.model.v20190627.CheckReceiveResponse.ConsistentDemandResponseList; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckReceiveResponseUnmarshaller { + + public static CheckReceiveResponse unmarshall(CheckReceiveResponse checkReceiveResponse, UnmarshallerContext _ctx) { + + checkReceiveResponse.setRequestId(_ctx.stringValue("CheckReceiveResponse.RequestId")); + checkReceiveResponse.setMessage(_ctx.stringValue("CheckReceiveResponse.Message")); + checkReceiveResponse.setSuccess(_ctx.booleanValue("CheckReceiveResponse.Success")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("CheckReceiveResponse.Result.Length"); i++) { + ConsistentDemandResponseList consistentDemandResponseList = new ConsistentDemandResponseList(); + consistentDemandResponseList.setConsistentDemandId(_ctx.longValue("CheckReceiveResponse.Result["+ i +"].ConsistentDemandId")); + consistentDemandResponseList.setErrorMsg(_ctx.stringValue("CheckReceiveResponse.Result["+ i +"].ErrorMsg")); + consistentDemandResponseList.setSource(_ctx.stringValue("CheckReceiveResponse.Result["+ i +"].Source")); + consistentDemandResponseList.setSourceId(_ctx.stringValue("CheckReceiveResponse.Result["+ i +"].SourceId")); + consistentDemandResponseList.setSuccess(_ctx.booleanValue("CheckReceiveResponse.Result["+ i +"].Success")); + + result.add(consistentDemandResponseList); + } + checkReceiveResponse.setResult(result); + + return checkReceiveResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/CreateLxProjectResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/CreateLxProjectResponseUnmarshaller.java new file mode 100644 index 0000000000..f71a907cf7 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/CreateLxProjectResponseUnmarshaller.java @@ -0,0 +1,57 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.CreateLxProjectResponse; +import com.aliyuncs.brinekingdom.model.v20190627.CreateLxProjectResponse.DataItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CreateLxProjectResponseUnmarshaller { + + public static CreateLxProjectResponse unmarshall(CreateLxProjectResponse createLxProjectResponse, UnmarshallerContext _ctx) { + + createLxProjectResponse.setSuccess(_ctx.booleanValue("CreateLxProjectResponse.success")); + createLxProjectResponse.setErrorCode(_ctx.stringValue("CreateLxProjectResponse.errorCode")); + createLxProjectResponse.setMsg(_ctx.stringValue("CreateLxProjectResponse.msg")); + createLxProjectResponse.setTotalItems(_ctx.longValue("CreateLxProjectResponse.totalItems")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("CreateLxProjectResponse.data.Length"); i++) { + DataItem dataItem = new DataItem(); + dataItem.setConstructionTeam(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].constructionTeam")); + dataItem.setSourceNumber(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].sourceNumber")); + dataItem.setProjectId(_ctx.longValue("CreateLxProjectResponse.data["+ i +"].projectId")); + dataItem.setProjectNo(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].projectNo")); + dataItem.setUser(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].user")); + dataItem.setRemark(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].remark")); + dataItem.setProjectSource(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].projectSource")); + dataItem.setExtInfo(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].extInfo")); + dataItem.setSystemSource(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].systemSource")); + dataItem.setIsStanderProcess(_ctx.integerValue("CreateLxProjectResponse.data["+ i +"].isStanderProcess")); + dataItem.setCancelProjectUrl(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].cancelProjectUrl")); + dataItem.setSourceSystemUrl(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].sourceSystemUrl")); + dataItem.setInitWiringUrl(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].initWiringUrl")); + + data.add(dataItem); + } + createLxProjectResponse.setData(data); + + return createLxProjectResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/DeleteConsistentDemandResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/DeleteConsistentDemandResponseUnmarshaller.java new file mode 100644 index 0000000000..494c01aa6a --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/DeleteConsistentDemandResponseUnmarshaller.java @@ -0,0 +1,32 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.DeleteConsistentDemandResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class DeleteConsistentDemandResponseUnmarshaller { + + public static DeleteConsistentDemandResponse unmarshall(DeleteConsistentDemandResponse deleteConsistentDemandResponse, UnmarshallerContext _ctx) { + + deleteConsistentDemandResponse.setRequestId(_ctx.stringValue("DeleteConsistentDemandResponse.RequestId")); + deleteConsistentDemandResponse.setMessage(_ctx.stringValue("DeleteConsistentDemandResponse.Message")); + deleteConsistentDemandResponse.setSuccess(_ctx.booleanValue("DeleteConsistentDemandResponse.Success")); + deleteConsistentDemandResponse.setResult(_ctx.longValue("DeleteConsistentDemandResponse.Result")); + + return deleteConsistentDemandResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/DeleteDemandReverseByIdResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/DeleteDemandReverseByIdResponseUnmarshaller.java new file mode 100644 index 0000000000..a00a6c735b --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/DeleteDemandReverseByIdResponseUnmarshaller.java @@ -0,0 +1,34 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.DeleteDemandReverseByIdResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class DeleteDemandReverseByIdResponseUnmarshaller { + + public static DeleteDemandReverseByIdResponse unmarshall(DeleteDemandReverseByIdResponse deleteDemandReverseByIdResponse, UnmarshallerContext _ctx) { + + deleteDemandReverseByIdResponse.setRequestId(_ctx.stringValue("DeleteDemandReverseByIdResponse.RequestId")); + deleteDemandReverseByIdResponse.setTraceId(_ctx.stringValue("DeleteDemandReverseByIdResponse.TraceId")); + deleteDemandReverseByIdResponse.setErrorMessage(_ctx.stringValue("DeleteDemandReverseByIdResponse.ErrorMessage")); + deleteDemandReverseByIdResponse.setResultCode(_ctx.stringValue("DeleteDemandReverseByIdResponse.ResultCode")); + deleteDemandReverseByIdResponse.setSuccess(_ctx.booleanValue("DeleteDemandReverseByIdResponse.Success")); + deleteDemandReverseByIdResponse.setResult(_ctx.booleanValue("DeleteDemandReverseByIdResponse.Result")); + + return deleteDemandReverseByIdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetAllPrimaryProdResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetAllPrimaryProdResponseUnmarshaller.java new file mode 100644 index 0000000000..e25d088625 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetAllPrimaryProdResponseUnmarshaller.java @@ -0,0 +1,55 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetAllPrimaryProdResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetAllPrimaryProdResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetAllPrimaryProdResponseUnmarshaller { + + public static GetAllPrimaryProdResponse unmarshall(GetAllPrimaryProdResponse getAllPrimaryProdResponse, UnmarshallerContext _ctx) { + + getAllPrimaryProdResponse.setRequestId(_ctx.stringValue("GetAllPrimaryProdResponse.RequestId")); + getAllPrimaryProdResponse.set_Class(_ctx.stringValue("GetAllPrimaryProdResponse.Class")); + getAllPrimaryProdResponse.setErrorMessage(_ctx.stringValue("GetAllPrimaryProdResponse.ErrorMessage")); + getAllPrimaryProdResponse.setSuccess(_ctx.booleanValue("GetAllPrimaryProdResponse.Success")); + getAllPrimaryProdResponse.setResultCode(_ctx.stringValue("GetAllPrimaryProdResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetAllPrimaryProdResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setAoneId(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].AoneId")); + resultItem.setAoneName(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].AoneName")); + resultItem.set_Class(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].Class")); + resultItem.setProductClass(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductClass")); + resultItem.setProductClassCN(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductClassCN")); + resultItem.setProductCode(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductCode")); + resultItem.setProductEnName(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductEnName")); + resultItem.setProductLineCN(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductLineCN")); + resultItem.setProductLineEN(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductLineEN")); + resultItem.setProductName(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductName")); + + result.add(resultItem); + } + getAllPrimaryProdResponse.setResult(result); + + return getAllPrimaryProdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetConsistentDemandListResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetConsistentDemandListResponseUnmarshaller.java new file mode 100644 index 0000000000..e7d1be8d6f --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetConsistentDemandListResponseUnmarshaller.java @@ -0,0 +1,372 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandDeploy; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue.ServerDemandListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem.ServerDemandListItem6; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ExchangeValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ExchangeValue.ServerDemandListItem11; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.NetPackValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.NetPackValue.ItemListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.PubNetAccessValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.PubNetAccessValue.ItemListItem2; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.RackValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.RackValue.ItemListItem9; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ServerDTO; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ServiceValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ServiceValue.ItemListItem4; +import java.util.Map; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetConsistentDemandListResponseUnmarshaller { + + public static GetConsistentDemandListResponse unmarshall(GetConsistentDemandListResponse getConsistentDemandListResponse, UnmarshallerContext _ctx) { + + getConsistentDemandListResponse.setRequestId(_ctx.stringValue("GetConsistentDemandListResponse.RequestId")); + getConsistentDemandListResponse.setMessage(_ctx.stringValue("GetConsistentDemandListResponse.Message")); + getConsistentDemandListResponse.setSuccess(_ctx.booleanValue("GetConsistentDemandListResponse.Success")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetConsistentDemandListResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setAscriptionClassName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AscriptionClassName")); + resultItem.setDeployProduct2Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct2Name")); + resultItem.setItemType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ItemType")); + resultItem.setMatchCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MatchCnt")); + resultItem.setOrgName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].OrgName")); + resultItem.setBusinessMode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BusinessMode")); + resultItem.setBrandName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BrandName")); + resultItem.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Item")); + resultItem.setFactoryInstall(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].FactoryInstall")); + resultItem.setRequireType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].RequireType")); + resultItem.setModelLoad(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ModelLoad")); + resultItem.setServerAssignCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ServerAssignCnt")); + resultItem.setOsId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].OsId")); + resultItem.setLadingProcessQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].LadingProcessQty")); + resultItem.setProjectTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectTypeName")); + resultItem.setStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Status")); + resultItem.setCbmOwner(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].CbmOwner")); + resultItem.setProductType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProductType")); + resultItem.setProduct3Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product3Name")); + resultItem.setScenario(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Scenario")); + resultItem.setNetworkArch(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].NetworkArch")); + resultItem.setUid(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Uid")); + resultItem.setGmtCreate(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].GmtCreate")); + resultItem.setScPlanIds(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ScPlanIds")); + resultItem.setSupplyQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyQty")); + resultItem.setId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].Id")); + resultItem.setAssetReceiverNick(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AssetReceiverNick")); + resultItem.setUseCapacityCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseCapacityCnt")); + resultItem.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product3")); + resultItem.setProduct1(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product1")); + resultItem.setProjectName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectName")); + resultItem.setProduct2(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product2")); + resultItem.setSourceId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SourceId")); + resultItem.setProduct1Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product1Name")); + resultItem.setMoveExecuteQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MoveExecuteQty")); + resultItem.setUseL2PoolCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseL2PoolCnt")); + resultItem.setAscriptionClass(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AscriptionClass")); + resultItem.setExpectTurnOverDateStr(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ExpectTurnOverDateStr")); + resultItem.setDeployProduct1(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct1")); + resultItem.setDeployProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct3")); + resultItem.setDeployProduct2(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct2")); + resultItem.setMoveQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MoveQty")); + resultItem.setLogicZone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].LogicZone")); + resultItem.setSupplyArea(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyArea")); + resultItem.setManufacturingBrandCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ManufacturingBrandCode")); + resultItem.setExecuteFlag(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].ExecuteFlag")); + resultItem.setDemandClass(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandClass")); + resultItem.setMoveDeliveredQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MoveDeliveredQty")); + resultItem.setTenantId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].TenantId")); + resultItem.setDeployProduct3Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct3Name")); + resultItem.setModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Model")); + resultItem.setOtherMsg(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].OtherMsg")); + resultItem.setTag(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Tag")); + resultItem.setAutoExecute(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].AutoExecute")); + resultItem.setDemandQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandQty")); + resultItem.setBusinessType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BusinessType")); + resultItem.setIdc(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Idc")); + resultItem.setBrandCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BrandCode")); + resultItem.setCreator(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Creator")); + resultItem.setBrandId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].BrandId")); + resultItem.setInstallName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].InstallName")); + resultItem.setEvaluateStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].EvaluateStatus")); + resultItem.setFcstOccupyStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].FcstOccupyStatus")); + resultItem.setCapacityResponseStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].CapacityResponseStatus")); + resultItem.setAblePurchaseLading(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].AblePurchaseLading")); + resultItem.setManufacturingBrandId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].ManufacturingBrandId")); + resultItem.setSafeYear(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SafeYear")); + resultItem.setMoveOrders(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].MoveOrders")); + resultItem.setSupplyLevel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyLevel")); + resultItem.setRequireTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].RequireTypeName")); + resultItem.setConfigModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ConfigModel")); + resultItem.setUpdater(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Updater")); + resultItem.setExpectTurnOverDate(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].ExpectTurnOverDate")); + resultItem.setMoveReason(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].MoveReason")); + resultItem.setSupplyType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyType")); + resultItem.setDeployProduct1Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct1Name")); + resultItem.setInstall(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].Install")); + resultItem.setWhiteOrder(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].WhiteOrder")); + resultItem.setUseSupplyCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseSupplyCnt")); + resultItem.setAzone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Azone")); + resultItem.setPurchaseCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].PurchaseCnt")); + resultItem.setShiftMethod(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ShiftMethod")); + resultItem.setBenefitOld(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].BenefitOld")); + resultItem.setIndustryLine(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].IndustryLine")); + resultItem.setPurchaseOrders(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].PurchaseOrders")); + resultItem.setFcstId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].FcstId")); + resultItem.setPriority(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Priority")); + resultItem.setUsePlanCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePlanCnt")); + resultItem.setRackAssignCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].RackAssignCnt")); + resultItem.setAssignVersion(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AssignVersion")); + resultItem.setFeatureStr(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].FeatureStr")); + resultItem.setFlag(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].Flag")); + resultItem.setExecuteError(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ExecuteError")); + resultItem.setAssetReceiver(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AssetReceiver")); + resultItem.setUsePoolInPlaceCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePoolInPlaceCnt")); + resultItem.setSectionRackStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SectionRackStatus")); + resultItem.setProjectType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectType")); + resultItem.setHasSolution(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].HasSolution")); + resultItem.setRegion(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Region")); + resultItem.setUseFcst(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseFcst")); + resultItem.setCreatorName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].CreatorName")); + resultItem.setOperator(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Operator")); + resultItem.setBtoFlag(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].BtoFlag")); + resultItem.setClassZone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ClassZone")); + resultItem.setOrg(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Org")); + resultItem.setManualBrandName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ManualBrandName")); + resultItem.setGmtModified(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].GmtModified")); + resultItem.setClassZoneName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ClassZoneName")); + resultItem.setSectionDetail(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SectionDetail")); + resultItem.setReplenishUnit(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ReplenishUnit")); + resultItem.setSource(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Source")); + resultItem.setProduct2Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product2Name")); + resultItem.setExecuteQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ExecuteQty")); + resultItem.setSupplyDeliveredQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyDeliveredQty")); + resultItem.setFeatures(_ctx.mapValue("GetConsistentDemandListResponse.Result["+ i +"].Features")); + resultItem.setProjectCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectCode")); + resultItem.setInstallId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].InstallId")); + resultItem.setSectionRackAssignCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].SectionRackAssignCnt")); + resultItem.setUsePoolMoveCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePoolMoveCnt")); + resultItem.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AppGroup")); + resultItem.setUpdaterName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].UpdaterName")); + resultItem.setComments(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Comments")); + resultItem.setUsePoolCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePoolCnt")); + resultItem.setOsName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].OsName")); + resultItem.setError(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Error")); + resultItem.setNic(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Nic")); + resultItem.setCluster(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Cluster")); + resultItem.setBusinessTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BusinessTypeName")); + resultItem.setProcessId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProcessId")); + resultItem.setSafeZone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SafeZone")); + resultItem.setToConfirmCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ToConfirmCnt")); + + List rackInfo = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].RackInfo.Length"); j++) { + rackInfo.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].RackInfo["+ j +"]")); + } + resultItem.setRackInfo(rackInfo); + + DemandDeploy demandDeploy = new DemandDeploy(); + demandDeploy.setNetArch(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.NetArch")); + demandDeploy.setFrameworkClass(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.FrameworkClass")); + demandDeploy.setDeployMode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployMode")); + demandDeploy.setDeployLocation(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployLocation")); + demandDeploy.setDeployArch(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployArch")); + demandDeploy.setNodeType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.NodeType")); + demandDeploy.setDeployLevel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployLevel")); + demandDeploy.setBoxModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.BoxModel")); + demandDeploy.setPublicNetWorkExport(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.PublicNetWorkExport")); + demandDeploy.setBoxUpLink(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.BoxUpLink")); + demandDeploy.setDeployRole(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployRole")); + demandDeploy.setBoxDownLink(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.BoxDownLink")); + resultItem.setDemandDeploy(demandDeploy); + + DemandItem demandItem = new DemandItem(); + demandItem.setDemandItemType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.DemandItemType")); + + ServerDTO serverDTO = new ServerDTO(); + serverDTO.setConfig(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServerDTO.Config")); + serverDTO.setModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServerDTO.Model")); + serverDTO.setNic(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServerDTO.Nic")); + demandItem.setServerDTO(serverDTO); + + NetPackValue netPackValue = new NetPackValue(); + + List itemList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList.Length"); j++) { + ItemListItem itemListItem = new ItemListItem(); + itemListItem.setRole(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Role")); + itemListItem.setDemandQty(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].DemandQty")); + itemListItem.setResourceType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].ResourceType")); + itemListItem.setFramework(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Framework")); + itemListItem.setRemark(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Remark")); + + itemList.add(itemListItem); + } + netPackValue.setItemList(itemList); + demandItem.setNetPackValue(netPackValue); + + PubNetAccessValue pubNetAccessValue = new PubNetAccessValue(); + + List itemList1 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList.Length"); j++) { + ItemListItem2 itemListItem2 = new ItemListItem2(); + itemListItem2.setPrice(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Price")); + itemListItem2.setBandwidth(_ctx.floatValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Bandwidth")); + itemListItem2.setAccessType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].AccessType")); + + itemList1.add(itemListItem2); + } + pubNetAccessValue.setItemList1(itemList1); + demandItem.setPubNetAccessValue(pubNetAccessValue); + + ServiceValue serviceValue = new ServiceValue(); + + List itemList3 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList.Length"); j++) { + ItemListItem4 itemListItem4 = new ItemListItem4(); + itemListItem4.setServiceTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceTypeName")); + itemListItem4.setArea(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Area")); + itemListItem4.setYear(_ctx.floatValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Year")); + itemListItem4.setServiceType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceType")); + itemListItem4.setAmount(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Amount")); + itemListItem4.setIdc(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Idc")); + itemListItem4.setServiceItemName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItemName")); + itemListItem4.setCity(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].City")); + itemListItem4.setServiceItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItem")); + itemListItem4.setRemark(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Remark")); + + itemList3.add(itemListItem4); + } + serviceValue.setItemList3(itemList3); + demandItem.setServiceValue(serviceValue); + + ComboValue comboValue = new ComboValue(); + comboValue.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.SkuId")); + + List serverDemandList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList.Length"); j++) { + ServerDemandListItem serverDemandListItem = new ServerDemandListItem(); + serverDemandListItem.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Item")); + serverDemandListItem.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Product3")); + serverDemandListItem.setAgreedQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AgreedQuantity")); + serverDemandListItem.setQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Quantity")); + serverDemandListItem.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SkuId")); + serverDemandListItem.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AppGroup")); + + List snList = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList.Length"); k++) { + snList.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList["+ k +"]")); + } + serverDemandListItem.setSnList(snList); + + serverDemandList.add(serverDemandListItem); + } + comboValue.setServerDemandList(serverDemandList); + + List wholeRackList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList.Length"); j++) { + WholeRackListItem wholeRackListItem = new WholeRackListItem(); + wholeRackListItem.setOrder(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].Order")); + wholeRackListItem.setRackPackage(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].RackPackage")); + + List serverDemandList5 = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList.Length"); k++) { + ServerDemandListItem6 serverDemandListItem6 = new ServerDemandListItem6(); + serverDemandListItem6.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Item")); + serverDemandListItem6.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Product3")); + serverDemandListItem6.setAgreedQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AgreedQuantity")); + serverDemandListItem6.setQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Quantity")); + serverDemandListItem6.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SkuId")); + serverDemandListItem6.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AppGroup")); + + List snList7 = new ArrayList(); + for (int l = 0; l < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList.Length"); l++) { + snList7.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList["+ l +"]")); + } + serverDemandListItem6.setSnList7(snList7); + + serverDemandList5.add(serverDemandListItem6); + } + wholeRackListItem.setServerDemandList5(serverDemandList5); + + wholeRackList.add(wholeRackListItem); + } + comboValue.setWholeRackList(wholeRackList); + demandItem.setComboValue(comboValue); + + RackValue rackValue = new RackValue(); + + List itemList8 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList.Length"); j++) { + ItemListItem9 itemListItem9 = new ItemListItem9(); + itemListItem9.setRackNum(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RackNum")); + itemListItem9.setRoomCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RoomCode")); + itemListItem9.setPower(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].Power")); + itemListItem9.setPowUtilizationRate(_ctx.floatValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].PowUtilizationRate")); + + itemList8.add(itemListItem9); + } + rackValue.setItemList8(itemList8); + demandItem.setRackValue(rackValue); + + ExchangeValue exchangeValue = new ExchangeValue(); + + List exchangeList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList.Length"); j++) { + exchangeList.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList["+ j +"]")); + } + exchangeValue.setExchangeList(exchangeList); + + List serverDemandList10 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList.Length"); j++) { + ServerDemandListItem11 serverDemandListItem11 = new ServerDemandListItem11(); + serverDemandListItem11.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Item")); + serverDemandListItem11.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Product3")); + serverDemandListItem11.setAgreedQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AgreedQuantity")); + serverDemandListItem11.setQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Quantity")); + serverDemandListItem11.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SkuId")); + serverDemandListItem11.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AppGroup")); + + List snList12 = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList.Length"); k++) { + snList12.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList["+ k +"]")); + } + serverDemandListItem11.setSnList12(snList12); + + serverDemandList10.add(serverDemandListItem11); + } + exchangeValue.setServerDemandList10(serverDemandList10); + demandItem.setExchangeValue(exchangeValue); + resultItem.setDemandItem(demandItem); + + result.add(resultItem); + } + getConsistentDemandListResponse.setResult(result); + + return getConsistentDemandListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetListModelResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetListModelResponseUnmarshaller.java new file mode 100644 index 0000000000..37a088f0b2 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetListModelResponseUnmarshaller.java @@ -0,0 +1,47 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetListModelResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetListModelResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetListModelResponseUnmarshaller { + + public static GetListModelResponse unmarshall(GetListModelResponse getListModelResponse, UnmarshallerContext _ctx) { + + getListModelResponse.setRequestId(_ctx.stringValue("GetListModelResponse.RequestId")); + getListModelResponse.set_Class(_ctx.stringValue("GetListModelResponse.Class")); + getListModelResponse.setErrorMessage(_ctx.stringValue("GetListModelResponse.ErrorMessage")); + getListModelResponse.setSuccess(_ctx.booleanValue("GetListModelResponse.Success")); + getListModelResponse.setResultCode(_ctx.stringValue("GetListModelResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetListModelResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setKey(_ctx.stringValue("GetListModelResponse.Result["+ i +"].Key")); + resultItem.setValue(_ctx.stringValue("GetListModelResponse.Result["+ i +"].Value")); + + result.add(resultItem); + } + getListModelResponse.setResult(result); + + return getListModelResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetListNetBandResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetListNetBandResponseUnmarshaller.java new file mode 100644 index 0000000000..d65e552dba --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetListNetBandResponseUnmarshaller.java @@ -0,0 +1,48 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetListNetBandResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetListNetBandResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetListNetBandResponseUnmarshaller { + + public static GetListNetBandResponse unmarshall(GetListNetBandResponse getListNetBandResponse, UnmarshallerContext _ctx) { + + getListNetBandResponse.setRequestId(_ctx.stringValue("GetListNetBandResponse.RequestId")); + getListNetBandResponse.set_Class(_ctx.stringValue("GetListNetBandResponse.Class")); + getListNetBandResponse.setErrorMessage(_ctx.stringValue("GetListNetBandResponse.ErrorMessage")); + getListNetBandResponse.setSuccess(_ctx.booleanValue("GetListNetBandResponse.Success")); + getListNetBandResponse.setResultCode(_ctx.stringValue("GetListNetBandResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetListNetBandResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.set_Class(_ctx.stringValue("GetListNetBandResponse.Result["+ i +"].Class")); + resultItem.setKey(_ctx.stringValue("GetListNetBandResponse.Result["+ i +"].Key")); + resultItem.setValue(_ctx.stringValue("GetListNetBandResponse.Result["+ i +"].Value")); + + result.add(resultItem); + } + getListNetBandResponse.setResult(result); + + return getListNetBandResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetOrganizationByQueryResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetOrganizationByQueryResponseUnmarshaller.java new file mode 100644 index 0000000000..daa8e28cdd --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetOrganizationByQueryResponseUnmarshaller.java @@ -0,0 +1,60 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetOrganizationByQueryResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetOrganizationByQueryResponse.Data; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetOrganizationByQueryResponseUnmarshaller { + + public static GetOrganizationByQueryResponse unmarshall(GetOrganizationByQueryResponse getOrganizationByQueryResponse, UnmarshallerContext _ctx) { + + getOrganizationByQueryResponse.setRequestId(_ctx.stringValue("GetOrganizationByQueryResponse.RequestId")); + getOrganizationByQueryResponse.set_Class(_ctx.stringValue("GetOrganizationByQueryResponse.Class")); + getOrganizationByQueryResponse.setErrorMessage(_ctx.stringValue("GetOrganizationByQueryResponse.ErrorMessage")); + getOrganizationByQueryResponse.setSuccess(_ctx.booleanValue("GetOrganizationByQueryResponse.Success")); + getOrganizationByQueryResponse.setResultCode(_ctx.stringValue("GetOrganizationByQueryResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetOrganizationByQueryResponse.Result.Length"); i++) { + Data data = new Data(); + data.setBusinessType(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].BusinessType")); + data.setBusinessTypeName(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].BusinessTypeName")); + data.set_Class(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Class")); + data.setDivision(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Division")); + data.setGmtCreate(_ctx.longValue("GetOrganizationByQueryResponse.Result["+ i +"].GmtCreate")); + data.setGmtModified(_ctx.longValue("GetOrganizationByQueryResponse.Result["+ i +"].GmtModified")); + data.setId(_ctx.longValue("GetOrganizationByQueryResponse.Result["+ i +"].Id")); + data.setOrgName(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].OrgName")); + data.setOrgRemark(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].OrgRemark")); + data.setProduct1(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product1")); + data.setProduct1Name(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product1Name")); + data.setProduct2(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product2")); + data.setProduct2Name(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product2Name")); + data.setRequireType(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].RequireType")); + data.setRequireTypeName(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].RequireTypeName")); + + result.add(data); + } + getOrganizationByQueryResponse.setResult(result); + + return getOrganizationByQueryResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanByIdResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanByIdResponseUnmarshaller.java new file mode 100644 index 0000000000..17ab61b288 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanByIdResponseUnmarshaller.java @@ -0,0 +1,143 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanByIdResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanByIdResponse.Result; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetPlanByIdResponseUnmarshaller { + + public static GetPlanByIdResponse unmarshall(GetPlanByIdResponse getPlanByIdResponse, UnmarshallerContext _ctx) { + + getPlanByIdResponse.setRequestId(_ctx.stringValue("GetPlanByIdResponse.RequestId")); + getPlanByIdResponse.setErrorMessage(_ctx.stringValue("GetPlanByIdResponse.ErrorMessage")); + getPlanByIdResponse.setSuccess(_ctx.booleanValue("GetPlanByIdResponse.Success")); + getPlanByIdResponse.setResultCode(_ctx.stringValue("GetPlanByIdResponse.ResultCode")); + + Result result = new Result(); + result.setAgreement(_ctx.stringValue("GetPlanByIdResponse.Result.Agreement")); + result.setAllocateAmount(_ctx.integerValue("GetPlanByIdResponse.Result.AllocateAmount")); + result.setAppGroupId(_ctx.longValue("GetPlanByIdResponse.Result.AppGroupId")); + result.setAppGroupName(_ctx.stringValue("GetPlanByIdResponse.Result.AppGroupName")); + result.setApplyType(_ctx.longValue("GetPlanByIdResponse.Result.ApplyType")); + result.setAssetReceiver(_ctx.stringValue("GetPlanByIdResponse.Result.AssetReceiver")); + result.setAssetReceiverNick(_ctx.stringValue("GetPlanByIdResponse.Result.AssetReceiverNick")); + result.setAutoLading(_ctx.longValue("GetPlanByIdResponse.Result.AutoLading")); + result.setAzone(_ctx.stringValue("GetPlanByIdResponse.Result.Azone")); + result.setBenefitOld(_ctx.integerValue("GetPlanByIdResponse.Result.BenefitOld")); + result.setBusiness(_ctx.stringValue("GetPlanByIdResponse.Result.Business")); + result.setBusinessEnName(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessEnName")); + result.setBusinessMode(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessMode")); + result.setBusinessModeName(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessModeName")); + result.setBusinessName(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessName")); + result.setCbmDemander(_ctx.stringValue("GetPlanByIdResponse.Result.CbmDemander")); + result.setChangeMsg(_ctx.stringValue("GetPlanByIdResponse.Result.ChangeMsg")); + result.setChangeSuccess(_ctx.longValue("GetPlanByIdResponse.Result.ChangeSuccess")); + result.set_Class(_ctx.stringValue("GetPlanByIdResponse.Result.Class")); + result.setClassZoneCode(_ctx.stringValue("GetPlanByIdResponse.Result.ClassZoneCode")); + result.setClassZoneName(_ctx.stringValue("GetPlanByIdResponse.Result.ClassZoneName")); + result.setCloudDeployProduct1(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct1")); + result.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct1Name")); + result.setCloudDeployProduct2(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct2")); + result.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct2Name")); + result.setCloudDeployProduct3(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct3")); + result.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct3Name")); + result.setCmC(_ctx.stringValue("GetPlanByIdResponse.Result.CmC")); + result.setCmP(_ctx.stringValue("GetPlanByIdResponse.Result.CmP")); + result.setCmU(_ctx.stringValue("GetPlanByIdResponse.Result.CmU")); + result.setCmV(_ctx.stringValue("GetPlanByIdResponse.Result.CmV")); + result.setCnt(_ctx.longValue("GetPlanByIdResponse.Result.Cnt")); + result.setCntString(_ctx.stringValue("GetPlanByIdResponse.Result.CntString")); + result.setComment(_ctx.stringValue("GetPlanByIdResponse.Result.Comment")); + result.setCountry(_ctx.stringValue("GetPlanByIdResponse.Result.Country")); + result.setCreateTime(_ctx.longValue("GetPlanByIdResponse.Result.CreateTime")); + result.setCreator(_ctx.stringValue("GetPlanByIdResponse.Result.Creator")); + result.setCreatorNic(_ctx.stringValue("GetPlanByIdResponse.Result.CreatorNic")); + result.setDeliveryAmount(_ctx.integerValue("GetPlanByIdResponse.Result.DeliveryAmount")); + result.setEffectStatus(_ctx.integerValue("GetPlanByIdResponse.Result.EffectStatus")); + result.setExpireDate(_ctx.longValue("GetPlanByIdResponse.Result.ExpireDate")); + result.setId(_ctx.longValue("GetPlanByIdResponse.Result.Id")); + result.setInstall(_ctx.longValue("GetPlanByIdResponse.Result.Install")); + result.setInstallId(_ctx.longValue("GetPlanByIdResponse.Result.InstallId")); + result.setInstallName(_ctx.stringValue("GetPlanByIdResponse.Result.InstallName")); + result.setLadingQuantity(_ctx.integerValue("GetPlanByIdResponse.Result.LadingQuantity")); + result.setLadingStatus(_ctx.longValue("GetPlanByIdResponse.Result.LadingStatus")); + result.setLineNumber(_ctx.integerValue("GetPlanByIdResponse.Result.LineNumber")); + result.setLogicZoneCode(_ctx.stringValue("GetPlanByIdResponse.Result.LogicZoneCode")); + result.setLogicZoneName(_ctx.stringValue("GetPlanByIdResponse.Result.LogicZoneName")); + result.setMachineType(_ctx.stringValue("GetPlanByIdResponse.Result.MachineType")); + result.setManufacturerBrand(_ctx.longValue("GetPlanByIdResponse.Result.ManufacturerBrand")); + result.setManufacturerBrandName(_ctx.stringValue("GetPlanByIdResponse.Result.ManufacturerBrandName")); + result.setModelLoad(_ctx.longValue("GetPlanByIdResponse.Result.ModelLoad")); + result.setModelLoadString(_ctx.stringValue("GetPlanByIdResponse.Result.ModelLoadString")); + result.setModify(_ctx.booleanValue("GetPlanByIdResponse.Result.Modify")); + result.setMsg(_ctx.stringValue("GetPlanByIdResponse.Result.Msg")); + result.setNakedDelivery(_ctx.longValue("GetPlanByIdResponse.Result.NakedDelivery")); + result.setNakedDeliveryName(_ctx.stringValue("GetPlanByIdResponse.Result.NakedDeliveryName")); + result.setNetArch(_ctx.stringValue("GetPlanByIdResponse.Result.NetArch")); + result.setNic(_ctx.stringValue("GetPlanByIdResponse.Result.Nic")); + result.setOldCnt(_ctx.integerValue("GetPlanByIdResponse.Result.OldCnt")); + result.setOrderId(_ctx.longValue("GetPlanByIdResponse.Result.OrderId")); + result.setOrgKey(_ctx.stringValue("GetPlanByIdResponse.Result.OrgKey")); + result.setOriginId(_ctx.longValue("GetPlanByIdResponse.Result.OriginId")); + result.setOsId(_ctx.longValue("GetPlanByIdResponse.Result.OsId")); + result.setOsName(_ctx.stringValue("GetPlanByIdResponse.Result.OsName")); + result.setOutId(_ctx.stringValue("GetPlanByIdResponse.Result.OutId")); + result.setPickAmount(_ctx.integerValue("GetPlanByIdResponse.Result.PickAmount")); + result.setPickOrderId(_ctx.longValue("GetPlanByIdResponse.Result.PickOrderId")); + result.setPlanType(_ctx.longValue("GetPlanByIdResponse.Result.PlanType")); + result.setPriority(_ctx.stringValue("GetPlanByIdResponse.Result.Priority")); + result.setProcessId(_ctx.stringValue("GetPlanByIdResponse.Result.ProcessId")); + result.setProduct1(_ctx.stringValue("GetPlanByIdResponse.Result.Product1")); + result.setProduct1Name(_ctx.stringValue("GetPlanByIdResponse.Result.Product1Name")); + result.setProduct2(_ctx.stringValue("GetPlanByIdResponse.Result.Product2")); + result.setProduct2Name(_ctx.stringValue("GetPlanByIdResponse.Result.Product2Name")); + result.setProduct3(_ctx.stringValue("GetPlanByIdResponse.Result.Product3")); + result.setProduct3EnName(_ctx.stringValue("GetPlanByIdResponse.Result.Product3EnName")); + result.setProduct3Name(_ctx.stringValue("GetPlanByIdResponse.Result.Product3Name")); + result.setProjectCode(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectCode")); + result.setProjectName(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectName")); + result.setProjectType(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectType")); + result.setProjectTypeName(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectTypeName")); + result.setQuotaPlanId(_ctx.longValue("GetPlanByIdResponse.Result.QuotaPlanId")); + result.setRegion(_ctx.stringValue("GetPlanByIdResponse.Result.Region")); + result.setReportId(_ctx.stringValue("GetPlanByIdResponse.Result.ReportId")); + result.setRequireType(_ctx.stringValue("GetPlanByIdResponse.Result.RequireType")); + result.setRequireTypeName(_ctx.stringValue("GetPlanByIdResponse.Result.RequireTypeName")); + result.setRoomCode(_ctx.stringValue("GetPlanByIdResponse.Result.RoomCode")); + result.setSafeYear(_ctx.stringValue("GetPlanByIdResponse.Result.SafeYear")); + result.setSafeZoneCode(_ctx.stringValue("GetPlanByIdResponse.Result.SafeZoneCode")); + result.setSafeZoneName(_ctx.stringValue("GetPlanByIdResponse.Result.SafeZoneName")); + result.setScenario(_ctx.stringValue("GetPlanByIdResponse.Result.Scenario")); + result.setSource(_ctx.stringValue("GetPlanByIdResponse.Result.Source")); + result.setStatus(_ctx.longValue("GetPlanByIdResponse.Result.Status")); + result.setStatusName(_ctx.stringValue("GetPlanByIdResponse.Result.StatusName")); + result.setSubordinateIndustryLine(_ctx.stringValue("GetPlanByIdResponse.Result.SubordinateIndustryLine")); + result.setSubordinateIndustryLineName(_ctx.stringValue("GetPlanByIdResponse.Result.SubordinateIndustryLineName")); + result.setSuccess(_ctx.longValue("GetPlanByIdResponse.Result.Success")); + result.setTime(_ctx.longValue("GetPlanByIdResponse.Result.Time")); + result.setTimeSpan(_ctx.longValue("GetPlanByIdResponse.Result.TimeSpan")); + result.setTimeString(_ctx.stringValue("GetPlanByIdResponse.Result.TimeString")); + result.setUpdateTime(_ctx.longValue("GetPlanByIdResponse.Result.UpdateTime")); + result.setUpdater(_ctx.stringValue("GetPlanByIdResponse.Result.Updater")); + result.setUpdaterNic(_ctx.stringValue("GetPlanByIdResponse.Result.UpdaterNic")); + result.setVersion(_ctx.longValue("GetPlanByIdResponse.Result.Version")); + getPlanByIdResponse.setResult(result); + + return getPlanByIdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListResponseUnmarshaller.java new file mode 100644 index 0000000000..0ac3046f77 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListResponseUnmarshaller.java @@ -0,0 +1,165 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListResponse.Result; +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListResponse.Result.DataListItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetPlanListResponseUnmarshaller { + + public static GetPlanListResponse unmarshall(GetPlanListResponse getPlanListResponse, UnmarshallerContext _ctx) { + + getPlanListResponse.setRequestId(_ctx.stringValue("GetPlanListResponse.RequestId")); + getPlanListResponse.setErrorMessage(_ctx.stringValue("GetPlanListResponse.ErrorMessage")); + getPlanListResponse.setSuccess(_ctx.booleanValue("GetPlanListResponse.Success")); + getPlanListResponse.setResultCode(_ctx.stringValue("GetPlanListResponse.ResultCode")); + + Result result = new Result(); + result.setCurrentPage(_ctx.longValue("GetPlanListResponse.Result.CurrentPage")); + result.setPageCount(_ctx.longValue("GetPlanListResponse.Result.PageCount")); + result.setPageSize(_ctx.longValue("GetPlanListResponse.Result.PageSize")); + result.setTotalCount(_ctx.longValue("GetPlanListResponse.Result.TotalCount")); + + List dataList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetPlanListResponse.Result.DataList.Length"); i++) { + DataListItem dataListItem = new DataListItem(); + dataListItem.setAccessory(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Accessory")); + dataListItem.setAgreement(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Agreement")); + dataListItem.setAllocateAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].AllocateAmount")); + dataListItem.setAppGroupId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].AppGroupId")); + dataListItem.setAppGroupName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].AppGroupName")); + dataListItem.setApplyType(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ApplyType")); + dataListItem.setAssetReceiver(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].AssetReceiver")); + dataListItem.setAssetReceiverNick(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].AssetReceiverNick")); + dataListItem.setAutoLading(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].AutoLading")); + dataListItem.setAzone(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Azone")); + dataListItem.setBenefitOld(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].BenefitOld")); + dataListItem.setBenefitOldName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BenefitOldName")); + dataListItem.setBusiness(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Business")); + dataListItem.setBusinessEnName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessEnName")); + dataListItem.setBusinessMode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessMode")); + dataListItem.setBusinessModeName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessModeName")); + dataListItem.setBusinessName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessName")); + dataListItem.setCbmDemander(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CbmDemander")); + dataListItem.setChangeMsg(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ChangeMsg")); + dataListItem.setChangeSuccess(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ChangeSuccess")); + dataListItem.setChannelName1(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ChannelName1")); + dataListItem.setChannelName2(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ChannelName2")); + dataListItem.setClassZoneCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ClassZoneCode")); + dataListItem.setClassZoneName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ClassZoneName")); + dataListItem.setCloudDeployProduct1(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct1")); + dataListItem.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct1Name")); + dataListItem.setCloudDeployProduct2(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct2")); + dataListItem.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct2Name")); + dataListItem.setCloudDeployProduct3(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct3")); + dataListItem.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct3Name")); + dataListItem.setCmC(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmC")); + dataListItem.setCmP(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmP")); + dataListItem.setCmU(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmU")); + dataListItem.setCmV(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmV")); + dataListItem.setCnt(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Cnt")); + dataListItem.setCntString(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CntString")); + dataListItem.setComment(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Comment")); + dataListItem.setCountry(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Country")); + dataListItem.setCreateTime(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].CreateTime")); + dataListItem.setCreator(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Creator")); + dataListItem.setCreatorNic(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CreatorNic")); + dataListItem.setDeliveryAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].DeliveryAmount")); + dataListItem.setEffectStatus(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].EffectStatus")); + dataListItem.setExpireDate(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ExpireDate")); + dataListItem.setId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Id")); + dataListItem.setInstall(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Install")); + dataListItem.setInstallId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].InstallId")); + dataListItem.setInstallName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].InstallName")); + dataListItem.setInstallStr(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].InstallStr")); + dataListItem.setLadingQuantity(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].LadingQuantity")); + dataListItem.setLadingStatus(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].LadingStatus")); + dataListItem.setLineNumber(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].LineNumber")); + dataListItem.setLogicZoneCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].LogicZoneCode")); + dataListItem.setLogicZoneName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].LogicZoneName")); + dataListItem.setMachineType(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].MachineType")); + dataListItem.setManufacturerBrand(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ManufacturerBrand")); + dataListItem.setManufacturerBrandName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ManufacturerBrandName")); + dataListItem.setModelLoad(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ModelLoad")); + dataListItem.setModelLoadString(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ModelLoadString")); + dataListItem.setModify(_ctx.booleanValue("GetPlanListResponse.Result.DataList["+ i +"].Modify")); + dataListItem.setMsg(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Msg")); + dataListItem.setNakedDelivery(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].NakedDelivery")); + dataListItem.setNakedDeliveryName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].NakedDeliveryName")); + dataListItem.setNetArch(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].NetArch")); + dataListItem.setNic(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Nic")); + dataListItem.setOldCnt(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].OldCnt")); + dataListItem.setOrderId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].OrderId")); + dataListItem.setOrgKey(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].OrgKey")); + dataListItem.setOriginId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].OriginId")); + dataListItem.setOsId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].OsId")); + dataListItem.setOsName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].OsName")); + dataListItem.setOutId(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].OutId")); + dataListItem.setWaitPickAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].WaitPickAmount")); + dataListItem.setPickAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].PickAmount")); + dataListItem.setDcosPickAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].DcosPickAmount")); + dataListItem.setPickOrderId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].PickOrderId")); + dataListItem.setPlanType(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].PlanType")); + dataListItem.setPriority(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Priority")); + dataListItem.setProcessId(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProcessId")); + dataListItem.setProduct1(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product1")); + dataListItem.setProduct1Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product1Name")); + dataListItem.setProduct2(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product2")); + dataListItem.setProduct2Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product2Name")); + dataListItem.setProduct3(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product3")); + dataListItem.setProduct3EnName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product3EnName")); + dataListItem.setProduct3Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product3Name")); + dataListItem.setProjectCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectCode")); + dataListItem.setProjectName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectName")); + dataListItem.setProjectType(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectType")); + dataListItem.setProjectTypeName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectTypeName")); + dataListItem.setQuotaPlanId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].QuotaPlanId")); + dataListItem.setRegion(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Region")); + dataListItem.setReportId(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ReportId")); + dataListItem.setRequireType(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].RequireType")); + dataListItem.setRequireTypeName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].RequireTypeName")); + dataListItem.setRoomCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].RoomCode")); + dataListItem.setSafeYear(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SafeYear")); + dataListItem.setSafeZoneCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SafeZoneCode")); + dataListItem.setSafeZoneName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SafeZoneName")); + dataListItem.setScenario(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Scenario")); + dataListItem.setSource(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Source")); + dataListItem.setStatus(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Status")); + dataListItem.setStatusName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].StatusName")); + dataListItem.setSubordinateIndustryLine(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SubordinateIndustryLine")); + dataListItem.setSubordinateIndustryLineName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SubordinateIndustryLineName")); + dataListItem.setSuccess(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Success")); + dataListItem.setTime(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Time")); + dataListItem.setTimeSpan(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].TimeSpan")); + dataListItem.setTimeString(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].TimeString")); + dataListItem.setUpdateTime(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].UpdateTime")); + dataListItem.setUpdater(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Updater")); + dataListItem.setUpdaterNic(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].UpdaterNic")); + dataListItem.setVersion(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Version")); + + dataList.add(dataListItem); + } + result.setDataList(dataList); + getPlanListResponse.setResult(result); + + return getPlanListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListWithReverseResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListWithReverseResponseUnmarshaller.java new file mode 100644 index 0000000000..53dd39ba5e --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListWithReverseResponseUnmarshaller.java @@ -0,0 +1,221 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse.Result; +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse.Result.DataListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse.Result.DataListItem.SplitDataListItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetPlanListWithReverseResponseUnmarshaller { + + public static GetPlanListWithReverseResponse unmarshall(GetPlanListWithReverseResponse getPlanListWithReverseResponse, UnmarshallerContext _ctx) { + + getPlanListWithReverseResponse.setRequestId(_ctx.stringValue("GetPlanListWithReverseResponse.RequestId")); + getPlanListWithReverseResponse.setErrorMessage(_ctx.stringValue("GetPlanListWithReverseResponse.ErrorMessage")); + getPlanListWithReverseResponse.setSuccess(_ctx.booleanValue("GetPlanListWithReverseResponse.Success")); + getPlanListWithReverseResponse.setResultCode(_ctx.stringValue("GetPlanListWithReverseResponse.ResultCode")); + + Result result = new Result(); + result.setCurrentPage(_ctx.longValue("GetPlanListWithReverseResponse.Result.CurrentPage")); + result.setPageCount(_ctx.longValue("GetPlanListWithReverseResponse.Result.PageCount")); + result.setPageSize(_ctx.longValue("GetPlanListWithReverseResponse.Result.PageSize")); + result.setTotalCount(_ctx.longValue("GetPlanListWithReverseResponse.Result.TotalCount")); + + List dataList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetPlanListWithReverseResponse.Result.DataList.Length"); i++) { + DataListItem dataListItem = new DataListItem(); + dataListItem.setAgreement(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Agreement")); + dataListItem.setAppGroupId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AppGroupId")); + dataListItem.setAppGroupName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AppGroupName")); + dataListItem.setAssetReceiver(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AssetReceiver")); + dataListItem.setAssetReceiverNick(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AssetReceiverNick")); + dataListItem.setAzone(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Azone")); + dataListItem.setBenefitOld(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BenefitOld")); + dataListItem.setBusiness(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Business")); + dataListItem.setBusinessMode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BusinessMode")); + dataListItem.setBusinessModeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BusinessModeName")); + dataListItem.setBusinessName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BusinessName")); + dataListItem.setCbmDemander(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CbmDemander")); + dataListItem.setClassZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ClassZoneCode")); + dataListItem.setClassZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ClassZoneName")); + dataListItem.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct1Name")); + dataListItem.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct2Name")); + dataListItem.setCloudDeployProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct3")); + dataListItem.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct3Name")); + dataListItem.setCmC(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmC")); + dataListItem.setCmP(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmP")); + dataListItem.setCmU(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmU")); + dataListItem.setCmV(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmV")); + dataListItem.setCnt(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Cnt")); + dataListItem.setComment(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Comment")); + dataListItem.setCreator(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Creator")); + dataListItem.setCreatorNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CreatorNic")); + dataListItem.setDeliveryAmount(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].DeliveryAmount")); + dataListItem.setExpireDate(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ExpireDate")); + dataListItem.setHighCnt(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].HighCnt")); + dataListItem.setId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Id")); + dataListItem.setInstall(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Install")); + dataListItem.setInstallId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].InstallId")); + dataListItem.setInstallName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].InstallName")); + dataListItem.setLadingStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].LadingStatus")); + dataListItem.setLogicZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].LogicZoneCode")); + dataListItem.setLogicZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].LogicZoneName")); + dataListItem.setMachineType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].MachineType")); + dataListItem.setManufacturerBrand(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ManufacturerBrand")); + dataListItem.setManufacturerBrandName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ManufacturerBrandName")); + dataListItem.setModelLoad(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ModelLoad")); + dataListItem.setMsg(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Msg")); + dataListItem.setNakedDelivery(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].NakedDelivery")); + dataListItem.setNetArch(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].NetArch")); + dataListItem.setNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Nic")); + dataListItem.setOrgKey(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OrgKey")); + dataListItem.setOsId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OsId")); + dataListItem.setOsName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OsName")); + dataListItem.setOutId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OutId")); + dataListItem.setPickAmount(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].PickAmount")); + dataListItem.setPlanType(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].PlanType")); + dataListItem.setPriority(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Priority")); + dataListItem.setProcessId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProcessId")); + dataListItem.setProduct1(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product1")); + dataListItem.setProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product1Name")); + dataListItem.setProduct2(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product2")); + dataListItem.setProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product2Name")); + dataListItem.setProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product3")); + dataListItem.setProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product3Name")); + dataListItem.setProjectCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectCode")); + dataListItem.setProjectName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectName")); + dataListItem.setProjectType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectType")); + dataListItem.setProjectTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectTypeName")); + dataListItem.setQuotaPlanId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].QuotaPlanId")); + dataListItem.setRegion(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Region")); + dataListItem.setRequireType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].RequireType")); + dataListItem.setRequireTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].RequireTypeName")); + dataListItem.setRoomCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].RoomCode")); + dataListItem.setSafeYear(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SafeYear")); + dataListItem.setSafeZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SafeZoneCode")); + dataListItem.setSafeZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SafeZoneName")); + dataListItem.setScenario(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Scenario")); + dataListItem.setSource(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Source")); + dataListItem.setStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Status")); + dataListItem.setSubLine(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SubLine")); + dataListItem.setSubLineName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SubLineName")); + dataListItem.setSuccess(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Success")); + dataListItem.setTime(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Time")); + + List splitDataList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList.Length"); j++) { + SplitDataListItem splitDataListItem = new SplitDataListItem(); + splitDataListItem.setAddStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AddStatus")); + splitDataListItem.setAppGroupId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AppGroupId")); + splitDataListItem.setAppGroupName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AppGroupName")); + splitDataListItem.setAssetReceiver(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AssetReceiver")); + splitDataListItem.setAssetReceiverNick(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AssetReceiverNick")); + splitDataListItem.setAzone(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Azone")); + splitDataListItem.setBenefitOld(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BenefitOld")); + splitDataListItem.setBusiness(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Business")); + splitDataListItem.setBusinessMode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BusinessMode")); + splitDataListItem.setBusinessModeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BusinessModeName")); + splitDataListItem.setBusinessName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BusinessName")); + splitDataListItem.setCbmDemander(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CbmDemander")); + splitDataListItem.setClassZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ClassZoneCode")); + splitDataListItem.setClassZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ClassZoneName")); + splitDataListItem.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct1Name")); + splitDataListItem.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct2Name")); + splitDataListItem.setCloudDeployProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct3")); + splitDataListItem.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct3Name")); + splitDataListItem.setCmC(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmC")); + splitDataListItem.setCmP(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmP")); + splitDataListItem.setCmU(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmU")); + splitDataListItem.setCmV(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmV")); + splitDataListItem.setCnt(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Cnt")); + splitDataListItem.setComment(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Comment")); + splitDataListItem.setCountry(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Country")); + splitDataListItem.setCreator(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Creator")); + splitDataListItem.setCreatorNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CreatorNic")); + splitDataListItem.setDcosStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].DcosStatus")); + splitDataListItem.setDemandStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].DemandStatus")); + splitDataListItem.setError(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Error")); + splitDataListItem.setGmtCreate(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].GmtCreate")); + splitDataListItem.setGmtModified(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].GmtModified")); + splitDataListItem.setHighCnt(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].HighCnt")); + splitDataListItem.setId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Id")); + splitDataListItem.setInstall(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Install")); + splitDataListItem.setInstallId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].InstallId")); + splitDataListItem.setInstallName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].InstallName")); + splitDataListItem.setLadingStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].LadingStatus")); + splitDataListItem.setLogicZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].LogicZoneCode")); + splitDataListItem.setLogicZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].LogicZoneName")); + splitDataListItem.setMachineType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].MachineType")); + splitDataListItem.setManufacturerBrand(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ManufacturerBrand")); + splitDataListItem.setManufacturerBrandName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ManufacturerBrandName")); + splitDataListItem.setModelLoad(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ModelLoad")); + splitDataListItem.setNakedDelivery(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].NakedDelivery")); + splitDataListItem.setNetArch(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].NetArch")); + splitDataListItem.setNewPlanId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].NewPlanId")); + splitDataListItem.setNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Nic")); + splitDataListItem.setOrg(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Org")); + splitDataListItem.setOriginId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OriginId")); + splitDataListItem.setOsId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OsId")); + splitDataListItem.setOsName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OsName")); + splitDataListItem.setOutId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OutId")); + splitDataListItem.setPlanChangeReason(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].PlanChangeReason")); + splitDataListItem.setPlanType(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].PlanType")); + splitDataListItem.setPriority(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Priority")); + splitDataListItem.setProcessId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProcessId")); + splitDataListItem.setProduct1(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product1")); + splitDataListItem.setProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product1Name")); + splitDataListItem.setProduct2(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product2")); + splitDataListItem.setProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product2Name")); + splitDataListItem.setProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product3")); + splitDataListItem.setProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product3Name")); + splitDataListItem.setProjectCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectCode")); + splitDataListItem.setProjectName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectName")); + splitDataListItem.setProjectType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectType")); + splitDataListItem.setProjectTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectTypeName")); + splitDataListItem.setQuotaPlanId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].QuotaPlanId")); + splitDataListItem.setRegion(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Region")); + splitDataListItem.setRequireType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].RequireType")); + splitDataListItem.setRequireTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].RequireTypeName")); + splitDataListItem.setReverseStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ReverseStatus")); + splitDataListItem.setReverseType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ReverseType")); + splitDataListItem.setRoomCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].RoomCode")); + splitDataListItem.setSafeYear(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SafeYear")); + splitDataListItem.setSafeZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SafeZoneCode")); + splitDataListItem.setSafeZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SafeZoneName")); + splitDataListItem.setScStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ScStatus")); + splitDataListItem.setScenario(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Scenario")); + splitDataListItem.setStockStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].StockStatus")); + splitDataListItem.setSubLine(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SubLine")); + splitDataListItem.setSubLineName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SubLineName")); + splitDataListItem.setTime(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Time")); + + splitDataList.add(splitDataListItem); + } + dataListItem.setSplitDataList(splitDataList); + + dataList.add(dataListItem); + } + result.setDataList(dataList); + getPlanListWithReverseResponse.setResult(result); + + return getPlanListWithReverseResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetProjectTypeByCodeResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetProjectTypeByCodeResponseUnmarshaller.java new file mode 100644 index 0000000000..a97b4a693c --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetProjectTypeByCodeResponseUnmarshaller.java @@ -0,0 +1,41 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.GetProjectTypeByCodeResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetProjectTypeByCodeResponse.Result; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetProjectTypeByCodeResponseUnmarshaller { + + public static GetProjectTypeByCodeResponse unmarshall(GetProjectTypeByCodeResponse getProjectTypeByCodeResponse, UnmarshallerContext _ctx) { + + getProjectTypeByCodeResponse.setRequestId(_ctx.stringValue("GetProjectTypeByCodeResponse.RequestId")); + getProjectTypeByCodeResponse.set_Class(_ctx.stringValue("GetProjectTypeByCodeResponse.Class")); + getProjectTypeByCodeResponse.setErrorMessage(_ctx.stringValue("GetProjectTypeByCodeResponse.ErrorMessage")); + getProjectTypeByCodeResponse.setSuccess(_ctx.booleanValue("GetProjectTypeByCodeResponse.Success")); + getProjectTypeByCodeResponse.setResultCode(_ctx.stringValue("GetProjectTypeByCodeResponse.ResultCode")); + + Result result = new Result(); + result.set_Class(_ctx.stringValue("GetProjectTypeByCodeResponse.Result.Class")); + result.setId(_ctx.longValue("GetProjectTypeByCodeResponse.Result.Id")); + result.setProjectType(_ctx.stringValue("GetProjectTypeByCodeResponse.Result.ProjectType")); + result.setProjectTypeName(_ctx.stringValue("GetProjectTypeByCodeResponse.Result.ProjectTypeName")); + getProjectTypeByCodeResponse.setResult(result); + + return getProjectTypeByCodeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetSecondaryProdByPrimaryProdResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetSecondaryProdByPrimaryProdResponseUnmarshaller.java new file mode 100644 index 0000000000..aff50dc96a --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetSecondaryProdByPrimaryProdResponseUnmarshaller.java @@ -0,0 +1,55 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetSecondaryProdByPrimaryProdResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetSecondaryProdByPrimaryProdResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetSecondaryProdByPrimaryProdResponseUnmarshaller { + + public static GetSecondaryProdByPrimaryProdResponse unmarshall(GetSecondaryProdByPrimaryProdResponse getSecondaryProdByPrimaryProdResponse, UnmarshallerContext _ctx) { + + getSecondaryProdByPrimaryProdResponse.setRequestId(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.RequestId")); + getSecondaryProdByPrimaryProdResponse.set_Class(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Class")); + getSecondaryProdByPrimaryProdResponse.setErrorMessage(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.ErrorMessage")); + getSecondaryProdByPrimaryProdResponse.setSuccess(_ctx.booleanValue("GetSecondaryProdByPrimaryProdResponse.Success")); + getSecondaryProdByPrimaryProdResponse.setResultCode(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetSecondaryProdByPrimaryProdResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setAoneId(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].AoneId")); + resultItem.setAoneName(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].AoneName")); + resultItem.set_Class(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].Class")); + resultItem.setProductClass(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductClass")); + resultItem.setProductClassCN(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductClassCN")); + resultItem.setProductCode(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductCode")); + resultItem.setProductEnName(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductEnName")); + resultItem.setProductLineCN(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductLineCN")); + resultItem.setProductLineEN(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductLineEN")); + resultItem.setProductName(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductName")); + + result.add(resultItem); + } + getSecondaryProdByPrimaryProdResponse.setResult(result); + + return getSecondaryProdByPrimaryProdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetSolutionListResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetSolutionListResponseUnmarshaller.java new file mode 100644 index 0000000000..99cbeebfdc --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetSolutionListResponseUnmarshaller.java @@ -0,0 +1,370 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandDeploy; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue.ServerDemandListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem.ServerDemandListItem6; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ExchangeValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ExchangeValue.ServerDemandListItem11; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.NetPackValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.NetPackValue.ItemListItem; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.PubNetAccessValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.PubNetAccessValue.ItemListItem2; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.RackValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.RackValue.ItemListItem9; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ServerDTO; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ServiceValue; +import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ServiceValue.ItemListItem4; +import java.util.Map; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetSolutionListResponseUnmarshaller { + + public static GetSolutionListResponse unmarshall(GetSolutionListResponse getSolutionListResponse, UnmarshallerContext _ctx) { + + getSolutionListResponse.setRequestId(_ctx.stringValue("GetSolutionListResponse.RequestId")); + getSolutionListResponse.setMessage(_ctx.stringValue("GetSolutionListResponse.Message")); + getSolutionListResponse.setSuccess(_ctx.booleanValue("GetSolutionListResponse.Success")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetSolutionListResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setAscriptionClassName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AscriptionClassName")); + resultItem.setDeployProduct2Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct2Name")); + resultItem.setDcsId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].DcsId")); + resultItem.setDataError(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DataError")); + resultItem.setItemType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ItemType")); + resultItem.setUkUseId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].UkUseId")); + resultItem.setMatchCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MatchCnt")); + resultItem.setOrgName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].OrgName")); + resultItem.setBusinessMode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BusinessMode")); + resultItem.setBrandName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BrandName")); + resultItem.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Item")); + resultItem.setFactoryInstall(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].FactoryInstall")); + resultItem.setRequireType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].RequireType")); + resultItem.setModelLoad(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].ModelLoad")); + resultItem.setServerAssignCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].ServerAssignCnt")); + resultItem.setOsId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].OsId")); + resultItem.setConsistentId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].ConsistentId")); + resultItem.setLadingProcessQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].LadingProcessQty")); + resultItem.setQuotaPlanId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].QuotaPlanId")); + resultItem.setDeliveryType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeliveryType")); + resultItem.setDataFlag(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].DataFlag")); + resultItem.setProjectTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectTypeName")); + resultItem.setStatus(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Status")); + resultItem.setCbmOwner(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].CbmOwner")); + resultItem.setProductType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProductType")); + resultItem.setProduct3Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product3Name")); + resultItem.setScenario(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Scenario")); + resultItem.setNetworkArch(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].NetworkArch")); + resultItem.setUid(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Uid")); + resultItem.setGmtCreate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].GmtCreate")); + resultItem.setScPlanIds(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ScPlanIds")); + resultItem.setSupplyQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].SupplyQty")); + resultItem.setId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].Id")); + resultItem.setAssetReceiverNick(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AssetReceiverNick")); + resultItem.setUseCapacityCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UseCapacityCnt")); + resultItem.setOrders(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Orders")); + resultItem.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product3")); + resultItem.setProduct1(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product1")); + resultItem.setProjectName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectName")); + resultItem.setProduct2(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product2")); + resultItem.setSourceId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SourceId")); + resultItem.setProduct1Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product1Name")); + resultItem.setMoveExecuteQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MoveExecuteQty")); + resultItem.setUseL2PoolCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UseL2PoolCnt")); + resultItem.setAscriptionClass(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AscriptionClass")); + resultItem.setExpectTurnOverDateStr(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ExpectTurnOverDateStr")); + resultItem.setDeployProduct1(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct1")); + resultItem.setDcsSource(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DcsSource")); + resultItem.setDeployProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct3")); + resultItem.setDeployProduct2(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct2")); + resultItem.setMoveQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MoveQty")); + resultItem.setUsePoolMoveDetail(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].UsePoolMoveDetail")); + resultItem.setLogicZone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].LogicZone")); + resultItem.setSupplyArea(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SupplyArea")); + resultItem.setManufacturingBrandCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ManufacturingBrandCode")); + resultItem.setExecuteFlag(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].ExecuteFlag")); + resultItem.setDemandClass(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandClass")); + resultItem.setMoveDeliveredQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MoveDeliveredQty")); + resultItem.setTenantId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].TenantId")); + resultItem.setDeployProduct3Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct3Name")); + resultItem.setAutoExecute(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].AutoExecute")); + resultItem.setDemandQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandQty")); + resultItem.setBusinessType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BusinessType")); + resultItem.setIdc(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Idc")); + resultItem.setBrandCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BrandCode")); + resultItem.setCreator(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Creator")); + resultItem.setBrandId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].BrandId")); + resultItem.setInstallName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].InstallName")); + resultItem.setEvaluateStatus(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].EvaluateStatus")); + resultItem.setManufacturingBrandId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].ManufacturingBrandId")); + resultItem.setSafeYear(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SafeYear")); + resultItem.setMoveOrders(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].MoveOrders")); + resultItem.setSupplyLevel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SupplyLevel")); + resultItem.setRequireTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].RequireTypeName")); + resultItem.setConfigModel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ConfigModel")); + resultItem.setUpdater(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Updater")); + resultItem.setExpectTurnOverDate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].ExpectTurnOverDate")); + resultItem.setSupplyType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SupplyType")); + resultItem.setDeployProduct1Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct1Name")); + resultItem.setInstall(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].Install")); + resultItem.setUseSupplyCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UseSupplyCnt")); + resultItem.setAzone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Azone")); + resultItem.setPurchaseCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].PurchaseCnt")); + resultItem.setShiftMethod(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ShiftMethod")); + resultItem.setBenefitOld(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].BenefitOld")); + resultItem.setIndustryLine(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].IndustryLine")); + resultItem.setPurchaseOrders(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].PurchaseOrders")); + resultItem.setFcstId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].FcstId")); + resultItem.setPriority(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Priority")); + resultItem.setUsePlanCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePlanCnt")); + resultItem.setRackAssignCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].RackAssignCnt")); + resultItem.setAssignVersion(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AssignVersion")); + resultItem.setFeatureStr(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].FeatureStr")); + resultItem.setExecuteError(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ExecuteError")); + resultItem.setAssetReceiver(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AssetReceiver")); + resultItem.setUsePoolInPlaceCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePoolInPlaceCnt")); + resultItem.setSectionRackStatus(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SectionRackStatus")); + resultItem.setProjectType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectType")); + resultItem.setRegion(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Region")); + resultItem.setSectionRackAvailableDate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].SectionRackAvailableDate")); + resultItem.setDcsSourceId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DcsSourceId")); + resultItem.setOperator(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Operator")); + resultItem.setClassZone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ClassZone")); + resultItem.setOrg(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Org")); + resultItem.setManualBrandName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ManualBrandName")); + resultItem.setGmtModified(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].GmtModified")); + resultItem.setClassZoneName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ClassZoneName")); + resultItem.setReplenishUnit(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ReplenishUnit")); + resultItem.setSource(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Source")); + resultItem.setProduct2Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product2Name")); + resultItem.setExecuteQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].ExecuteQty")); + resultItem.setUsePoolInPlaceDetail(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].UsePoolInPlaceDetail")); + resultItem.setSupplyDeliveredQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].SupplyDeliveredQty")); + resultItem.setFeatures(_ctx.mapValue("GetSolutionListResponse.Result["+ i +"].Features")); + resultItem.setProjectCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectCode")); + resultItem.setInstallId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].InstallId")); + resultItem.setSectionRackAssignCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].SectionRackAssignCnt")); + resultItem.setUsePoolMoveCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePoolMoveCnt")); + resultItem.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AppGroup")); + resultItem.setComments(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Comments")); + resultItem.setUsePoolCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePoolCnt")); + resultItem.setOsName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].OsName")); + resultItem.setCluster(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Cluster")); + resultItem.setAbleExecute(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].AbleExecute")); + resultItem.setUsePoolDetail(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].UsePoolDetail")); + resultItem.setBusinessTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BusinessTypeName")); + resultItem.setUseSupplyDate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].UseSupplyDate")); + resultItem.setPreExecuteRequest(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].PreExecuteRequest")); + resultItem.setSafeZone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SafeZone")); + + List rackInfo = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].RackInfo.Length"); j++) { + rackInfo.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].RackInfo["+ j +"]")); + } + resultItem.setRackInfo(rackInfo); + + DemandDeploy demandDeploy = new DemandDeploy(); + demandDeploy.setNetArch(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.NetArch")); + demandDeploy.setFrameworkClass(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.FrameworkClass")); + demandDeploy.setDeployMode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployMode")); + demandDeploy.setDeployLocation(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployLocation")); + demandDeploy.setDeployArch(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployArch")); + demandDeploy.setNodeType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.NodeType")); + demandDeploy.setDeployLevel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployLevel")); + demandDeploy.setBoxModel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.BoxModel")); + demandDeploy.setPublicNetWorkExport(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.PublicNetWorkExport")); + demandDeploy.setBoxUpLink(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.BoxUpLink")); + demandDeploy.setDeployRole(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployRole")); + demandDeploy.setBoxDownLink(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.BoxDownLink")); + resultItem.setDemandDeploy(demandDeploy); + + DemandItem demandItem = new DemandItem(); + demandItem.setDemandItemType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.DemandItemType")); + + ServerDTO serverDTO = new ServerDTO(); + serverDTO.setConfig(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServerDTO.Config")); + serverDTO.setModel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServerDTO.Model")); + serverDTO.setNic(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServerDTO.Nic")); + demandItem.setServerDTO(serverDTO); + + NetPackValue netPackValue = new NetPackValue(); + + List itemList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList.Length"); j++) { + ItemListItem itemListItem = new ItemListItem(); + itemListItem.setRole(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Role")); + itemListItem.setDemandQty(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].DemandQty")); + itemListItem.setResourceType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].ResourceType")); + itemListItem.setFramework(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Framework")); + itemListItem.setRemark(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Remark")); + + itemList.add(itemListItem); + } + netPackValue.setItemList(itemList); + demandItem.setNetPackValue(netPackValue); + + PubNetAccessValue pubNetAccessValue = new PubNetAccessValue(); + + List itemList1 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList.Length"); j++) { + ItemListItem2 itemListItem2 = new ItemListItem2(); + itemListItem2.setPrice(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Price")); + itemListItem2.setBandwidth(_ctx.floatValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Bandwidth")); + itemListItem2.setAccessType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].AccessType")); + + itemList1.add(itemListItem2); + } + pubNetAccessValue.setItemList1(itemList1); + demandItem.setPubNetAccessValue(pubNetAccessValue); + + ServiceValue serviceValue = new ServiceValue(); + + List itemList3 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList.Length"); j++) { + ItemListItem4 itemListItem4 = new ItemListItem4(); + itemListItem4.setServiceTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceTypeName")); + itemListItem4.setArea(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Area")); + itemListItem4.setYear(_ctx.floatValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Year")); + itemListItem4.setServiceType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceType")); + itemListItem4.setAmount(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Amount")); + itemListItem4.setIdc(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Idc")); + itemListItem4.setServiceItemName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItemName")); + itemListItem4.setCity(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].City")); + itemListItem4.setServiceItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItem")); + itemListItem4.setRemark(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Remark")); + + itemList3.add(itemListItem4); + } + serviceValue.setItemList3(itemList3); + demandItem.setServiceValue(serviceValue); + + ComboValue comboValue = new ComboValue(); + comboValue.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.SkuId")); + + List serverDemandList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList.Length"); j++) { + ServerDemandListItem serverDemandListItem = new ServerDemandListItem(); + serverDemandListItem.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Item")); + serverDemandListItem.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Product3")); + serverDemandListItem.setAgreedQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AgreedQuantity")); + serverDemandListItem.setQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Quantity")); + serverDemandListItem.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SkuId")); + serverDemandListItem.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AppGroup")); + + List snList = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList.Length"); k++) { + snList.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList["+ k +"]")); + } + serverDemandListItem.setSnList(snList); + + serverDemandList.add(serverDemandListItem); + } + comboValue.setServerDemandList(serverDemandList); + + List wholeRackList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList.Length"); j++) { + WholeRackListItem wholeRackListItem = new WholeRackListItem(); + wholeRackListItem.setOrder(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].Order")); + wholeRackListItem.setRackPackage(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].RackPackage")); + + List serverDemandList5 = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList.Length"); k++) { + ServerDemandListItem6 serverDemandListItem6 = new ServerDemandListItem6(); + serverDemandListItem6.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Item")); + serverDemandListItem6.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Product3")); + serverDemandListItem6.setAgreedQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AgreedQuantity")); + serverDemandListItem6.setQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Quantity")); + serverDemandListItem6.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SkuId")); + serverDemandListItem6.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AppGroup")); + + List snList7 = new ArrayList(); + for (int l = 0; l < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList.Length"); l++) { + snList7.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList["+ l +"]")); + } + serverDemandListItem6.setSnList7(snList7); + + serverDemandList5.add(serverDemandListItem6); + } + wholeRackListItem.setServerDemandList5(serverDemandList5); + + wholeRackList.add(wholeRackListItem); + } + comboValue.setWholeRackList(wholeRackList); + demandItem.setComboValue(comboValue); + + RackValue rackValue = new RackValue(); + + List itemList8 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList.Length"); j++) { + ItemListItem9 itemListItem9 = new ItemListItem9(); + itemListItem9.setRackNum(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RackNum")); + itemListItem9.setRoomCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RoomCode")); + itemListItem9.setPower(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].Power")); + itemListItem9.setPowUtilizationRate(_ctx.floatValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].PowUtilizationRate")); + + itemList8.add(itemListItem9); + } + rackValue.setItemList8(itemList8); + demandItem.setRackValue(rackValue); + + ExchangeValue exchangeValue = new ExchangeValue(); + + List exchangeList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList.Length"); j++) { + exchangeList.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList["+ j +"]")); + } + exchangeValue.setExchangeList(exchangeList); + + List serverDemandList10 = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList.Length"); j++) { + ServerDemandListItem11 serverDemandListItem11 = new ServerDemandListItem11(); + serverDemandListItem11.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Item")); + serverDemandListItem11.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Product3")); + serverDemandListItem11.setAgreedQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AgreedQuantity")); + serverDemandListItem11.setQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Quantity")); + serverDemandListItem11.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SkuId")); + serverDemandListItem11.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AppGroup")); + + List snList12 = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList.Length"); k++) { + snList12.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList["+ k +"]")); + } + serverDemandListItem11.setSnList12(snList12); + + serverDemandList10.add(serverDemandListItem11); + } + exchangeValue.setServerDemandList10(serverDemandList10); + demandItem.setExchangeValue(exchangeValue); + resultItem.setDemandItem(demandItem); + + result.add(resultItem); + } + getSolutionListResponse.setResult(result); + + return getSolutionListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetTertiaryProdBySecondaryProdResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetTertiaryProdBySecondaryProdResponseUnmarshaller.java new file mode 100644 index 0000000000..7fa8fe6526 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/GetTertiaryProdBySecondaryProdResponseUnmarshaller.java @@ -0,0 +1,55 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.GetTertiaryProdBySecondaryProdResponse; +import com.aliyuncs.brinekingdom.model.v20190627.GetTertiaryProdBySecondaryProdResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetTertiaryProdBySecondaryProdResponseUnmarshaller { + + public static GetTertiaryProdBySecondaryProdResponse unmarshall(GetTertiaryProdBySecondaryProdResponse getTertiaryProdBySecondaryProdResponse, UnmarshallerContext _ctx) { + + getTertiaryProdBySecondaryProdResponse.setRequestId(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.RequestId")); + getTertiaryProdBySecondaryProdResponse.set_Class(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Class")); + getTertiaryProdBySecondaryProdResponse.setErrorMessage(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.ErrorMessage")); + getTertiaryProdBySecondaryProdResponse.setSuccess(_ctx.booleanValue("GetTertiaryProdBySecondaryProdResponse.Success")); + getTertiaryProdBySecondaryProdResponse.setResultCode(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("GetTertiaryProdBySecondaryProdResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setAoneId(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].AoneId")); + resultItem.setAoneName(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].AoneName")); + resultItem.set_Class(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].Class")); + resultItem.setProductClass(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductClass")); + resultItem.setProductClassCN(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductClassCN")); + resultItem.setProductCode(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductCode")); + resultItem.setProductEnName(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductEnName")); + resultItem.setProductLineCN(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductLineCN")); + resultItem.setProductLineEN(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductLineEN")); + resultItem.setProductName(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductName")); + + result.add(resultItem); + } + getTertiaryProdBySecondaryProdResponse.setResult(result); + + return getTertiaryProdBySecondaryProdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/ListAllZoneResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/ListAllZoneResponseUnmarshaller.java new file mode 100644 index 0000000000..d6af1c7393 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/ListAllZoneResponseUnmarshaller.java @@ -0,0 +1,46 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.ListAllZoneResponse; +import com.aliyuncs.brinekingdom.model.v20190627.ListAllZoneResponse.区域; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ListAllZoneResponseUnmarshaller { + + public static ListAllZoneResponse unmarshall(ListAllZoneResponse listAllZoneResponse, UnmarshallerContext _ctx) { + + listAllZoneResponse.setErrorMessage(_ctx.stringValue("ListAllZoneResponse.ErrorMessage")); + listAllZoneResponse.setResultCode(_ctx.stringValue("ListAllZoneResponse.ResultCode")); + listAllZoneResponse.setSuccess(_ctx.booleanValue("ListAllZoneResponse.Success")); + listAllZoneResponse.set_Class(_ctx.stringValue("ListAllZoneResponse.Class")); + + List<区域> result = new ArrayList<区域>(); + for (int i = 0; i < _ctx.lengthValue("ListAllZoneResponse.Result.Length"); i++) { + 区域 区域 = new 区域(); + 区域.setKey(_ctx.stringValue("ListAllZoneResponse.Result["+ i +"].Key")); + 区域.setValue(_ctx.stringValue("ListAllZoneResponse.Result["+ i +"].Value")); + + result.add(区域); + } + listAllZoneResponse.setResult(result); + + return listAllZoneResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/OpenClientsDemandServiceResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/OpenClientsDemandServiceResponseUnmarshaller.java new file mode 100644 index 0000000000..c656917688 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/OpenClientsDemandServiceResponseUnmarshaller.java @@ -0,0 +1,35 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.OpenClientsDemandServiceResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class OpenClientsDemandServiceResponseUnmarshaller { + + public static OpenClientsDemandServiceResponse unmarshall(OpenClientsDemandServiceResponse openClientsDemandServiceResponse, UnmarshallerContext _ctx) { + + openClientsDemandServiceResponse.setRequestId(_ctx.stringValue("OpenClientsDemandServiceResponse.RequestId")); + openClientsDemandServiceResponse.setSourceId(_ctx.stringValue("OpenClientsDemandServiceResponse.SourceId")); + openClientsDemandServiceResponse.setErrorMsg(_ctx.stringValue("OpenClientsDemandServiceResponse.ErrorMsg")); + openClientsDemandServiceResponse.setDemandId(_ctx.longValue("OpenClientsDemandServiceResponse.DemandId")); + openClientsDemandServiceResponse.setSource(_ctx.stringValue("OpenClientsDemandServiceResponse.Source")); + openClientsDemandServiceResponse.setResultCode(_ctx.stringValue("OpenClientsDemandServiceResponse.ResultCode")); + openClientsDemandServiceResponse.setSuccess(_ctx.booleanValue("OpenClientsDemandServiceResponse.Success")); + + return openClientsDemandServiceResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/PushFcstPlanSopResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/PushFcstPlanSopResponseUnmarshaller.java new file mode 100644 index 0000000000..c30c05d8dc --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/PushFcstPlanSopResponseUnmarshaller.java @@ -0,0 +1,34 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.PushFcstPlanSopResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class PushFcstPlanSopResponseUnmarshaller { + + public static PushFcstPlanSopResponse unmarshall(PushFcstPlanSopResponse pushFcstPlanSopResponse, UnmarshallerContext _ctx) { + + pushFcstPlanSopResponse.setRequestId(_ctx.stringValue("PushFcstPlanSopResponse.RequestId")); + pushFcstPlanSopResponse.setTraceId(_ctx.stringValue("PushFcstPlanSopResponse.TraceId")); + pushFcstPlanSopResponse.setErrorMessage(_ctx.stringValue("PushFcstPlanSopResponse.ErrorMessage")); + pushFcstPlanSopResponse.setResultCode(_ctx.stringValue("PushFcstPlanSopResponse.ResultCode")); + pushFcstPlanSopResponse.setSuccess(_ctx.booleanValue("PushFcstPlanSopResponse.Success")); + pushFcstPlanSopResponse.setResult(_ctx.longValue("PushFcstPlanSopResponse.Result")); + + return pushFcstPlanSopResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAllOsResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAllOsResponseUnmarshaller.java new file mode 100644 index 0000000000..b82bcf5239 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAllOsResponseUnmarshaller.java @@ -0,0 +1,47 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.QueryAllOsResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QueryAllOsResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryAllOsResponseUnmarshaller { + + public static QueryAllOsResponse unmarshall(QueryAllOsResponse queryAllOsResponse, UnmarshallerContext _ctx) { + + queryAllOsResponse.setRequestId(_ctx.stringValue("QueryAllOsResponse.RequestId")); + queryAllOsResponse.set_Class(_ctx.stringValue("QueryAllOsResponse.Class")); + queryAllOsResponse.setErrorMessage(_ctx.stringValue("QueryAllOsResponse.ErrorMessage")); + queryAllOsResponse.setSuccess(_ctx.booleanValue("QueryAllOsResponse.Success")); + queryAllOsResponse.setResultCode(_ctx.stringValue("QueryAllOsResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryAllOsResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setLabel(_ctx.stringValue("QueryAllOsResponse.Result["+ i +"].Label")); + resultItem.setValue(_ctx.longValue("QueryAllOsResponse.Result["+ i +"].Value")); + + result.add(resultItem); + } + queryAllOsResponse.setResult(result); + + return queryAllOsResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByCityCodeResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByCityCodeResponseUnmarshaller.java new file mode 100644 index 0000000000..2e1bacd7a2 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByCityCodeResponseUnmarshaller.java @@ -0,0 +1,61 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByCityCodeResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByCityCodeResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryAzoneByCityCodeResponseUnmarshaller { + + public static QueryAzoneByCityCodeResponse unmarshall(QueryAzoneByCityCodeResponse queryAzoneByCityCodeResponse, UnmarshallerContext _ctx) { + + queryAzoneByCityCodeResponse.setRequestId(_ctx.stringValue("QueryAzoneByCityCodeResponse.RequestId")); + queryAzoneByCityCodeResponse.set_Class(_ctx.stringValue("QueryAzoneByCityCodeResponse.Class")); + queryAzoneByCityCodeResponse.setErrorMessage(_ctx.stringValue("QueryAzoneByCityCodeResponse.ErrorMessage")); + queryAzoneByCityCodeResponse.setSuccess(_ctx.booleanValue("QueryAzoneByCityCodeResponse.Success")); + queryAzoneByCityCodeResponse.setResultCode(_ctx.stringValue("QueryAzoneByCityCodeResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryAzoneByCityCodeResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setAzAlias(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzAlias")); + resultItem.setAzCnName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzCnName")); + resultItem.setAzId(_ctx.longValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzId")); + resultItem.setAzName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzName")); + resultItem.setCityCnName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CityCnName")); + resultItem.setCityEnName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CityEnName")); + resultItem.set_Class(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].Class")); + resultItem.setCnStatus(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CnStatus")); + resultItem.setCreator(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].Creator")); + resultItem.setCreatorNic(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CreatorNic")); + resultItem.setEnStatus(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].EnStatus")); + resultItem.setLastUpdate(_ctx.longValue("QueryAzoneByCityCodeResponse.Result["+ i +"].LastUpdate")); + resultItem.setModifier(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].Modifier")); + resultItem.setModifierNic(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].ModifierNic")); + resultItem.setRoomCode(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].RoomCode")); + resultItem.setRoomName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].RoomName")); + + result.add(resultItem); + } + queryAzoneByCityCodeResponse.setResult(result); + + return queryAzoneByCityCodeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByNameResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByNameResponseUnmarshaller.java new file mode 100644 index 0000000000..8700fef5d9 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByNameResponseUnmarshaller.java @@ -0,0 +1,53 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByNameResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByNameResponse.Result; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryAzoneByNameResponseUnmarshaller { + + public static QueryAzoneByNameResponse unmarshall(QueryAzoneByNameResponse queryAzoneByNameResponse, UnmarshallerContext _ctx) { + + queryAzoneByNameResponse.setRequestId(_ctx.stringValue("QueryAzoneByNameResponse.RequestId")); + queryAzoneByNameResponse.set_Class(_ctx.stringValue("QueryAzoneByNameResponse.Class")); + queryAzoneByNameResponse.setErrorMessage(_ctx.stringValue("QueryAzoneByNameResponse.ErrorMessage")); + queryAzoneByNameResponse.setSuccess(_ctx.booleanValue("QueryAzoneByNameResponse.Success")); + queryAzoneByNameResponse.setResultCode(_ctx.stringValue("QueryAzoneByNameResponse.ResultCode")); + + Result result = new Result(); + result.setAzAlias(_ctx.stringValue("QueryAzoneByNameResponse.Result.AzAlias")); + result.setAzCnName(_ctx.stringValue("QueryAzoneByNameResponse.Result.AzCnName")); + result.setAzId(_ctx.longValue("QueryAzoneByNameResponse.Result.AzId")); + result.setAzName(_ctx.stringValue("QueryAzoneByNameResponse.Result.AzName")); + result.setCityCnName(_ctx.stringValue("QueryAzoneByNameResponse.Result.CityCnName")); + result.setCityEnName(_ctx.stringValue("QueryAzoneByNameResponse.Result.CityEnName")); + result.set_Class(_ctx.stringValue("QueryAzoneByNameResponse.Result.Class")); + result.setCnStatus(_ctx.stringValue("QueryAzoneByNameResponse.Result.CnStatus")); + result.setCreator(_ctx.stringValue("QueryAzoneByNameResponse.Result.Creator")); + result.setCreatorNic(_ctx.stringValue("QueryAzoneByNameResponse.Result.CreatorNic")); + result.setEnStatus(_ctx.stringValue("QueryAzoneByNameResponse.Result.EnStatus")); + result.setLastUpdate(_ctx.longValue("QueryAzoneByNameResponse.Result.LastUpdate")); + result.setModifier(_ctx.stringValue("QueryAzoneByNameResponse.Result.Modifier")); + result.setModifierNic(_ctx.stringValue("QueryAzoneByNameResponse.Result.ModifierNic")); + result.setRoomCode(_ctx.stringValue("QueryAzoneByNameResponse.Result.RoomCode")); + result.setRoomName(_ctx.stringValue("QueryAzoneByNameResponse.Result.RoomName")); + queryAzoneByNameResponse.setResult(result); + + return queryAzoneByNameResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryCityResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryCityResponseUnmarshaller.java new file mode 100644 index 0000000000..9f2a9df665 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryCityResponseUnmarshaller.java @@ -0,0 +1,56 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.QueryCityResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QueryCityResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryCityResponseUnmarshaller { + + public static QueryCityResponse unmarshall(QueryCityResponse queryCityResponse, UnmarshallerContext _ctx) { + + queryCityResponse.setRequestId(_ctx.stringValue("QueryCityResponse.RequestId")); + queryCityResponse.set_Class(_ctx.stringValue("QueryCityResponse.Class")); + queryCityResponse.setErrorMessage(_ctx.stringValue("QueryCityResponse.ErrorMessage")); + queryCityResponse.setSuccess(_ctx.booleanValue("QueryCityResponse.Success")); + queryCityResponse.setResultCode(_ctx.stringValue("QueryCityResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryCityResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setCityAlias(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityAlias")); + resultItem.setCityCnName(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityCnName")); + resultItem.setCityCode(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityCode")); + resultItem.setCityEnName(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityEnName")); + resultItem.setCityId(_ctx.longValue("QueryCityResponse.Result["+ i +"].CityId")); + resultItem.set_Class(_ctx.stringValue("QueryCityResponse.Result["+ i +"].Class")); + resultItem.setCreator(_ctx.stringValue("QueryCityResponse.Result["+ i +"].Creator")); + resultItem.setCreatorNic(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CreatorNic")); + resultItem.setLastUpdate(_ctx.longValue("QueryCityResponse.Result["+ i +"].LastUpdate")); + resultItem.setModifier(_ctx.stringValue("QueryCityResponse.Result["+ i +"].Modifier")); + resultItem.setModifierNic(_ctx.stringValue("QueryCityResponse.Result["+ i +"].ModifierNic")); + + result.add(resultItem); + } + queryCityResponse.setResult(result); + + return queryCityResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryProjectTypeResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryProjectTypeResponseUnmarshaller.java new file mode 100644 index 0000000000..eec16c5d38 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryProjectTypeResponseUnmarshaller.java @@ -0,0 +1,49 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.QueryProjectTypeResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QueryProjectTypeResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryProjectTypeResponseUnmarshaller { + + public static QueryProjectTypeResponse unmarshall(QueryProjectTypeResponse queryProjectTypeResponse, UnmarshallerContext _ctx) { + + queryProjectTypeResponse.setRequestId(_ctx.stringValue("QueryProjectTypeResponse.RequestId")); + queryProjectTypeResponse.set_Class(_ctx.stringValue("QueryProjectTypeResponse.Class")); + queryProjectTypeResponse.setErrorMessage(_ctx.stringValue("QueryProjectTypeResponse.ErrorMessage")); + queryProjectTypeResponse.setSuccess(_ctx.booleanValue("QueryProjectTypeResponse.Success")); + queryProjectTypeResponse.setResultCode(_ctx.stringValue("QueryProjectTypeResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryProjectTypeResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.set_Class(_ctx.stringValue("QueryProjectTypeResponse.Result["+ i +"].Class")); + resultItem.setId(_ctx.longValue("QueryProjectTypeResponse.Result["+ i +"].Id")); + resultItem.setProjectType(_ctx.stringValue("QueryProjectTypeResponse.Result["+ i +"].ProjectType")); + resultItem.setProjectTypeName(_ctx.stringValue("QueryProjectTypeResponse.Result["+ i +"].ProjectTypeName")); + + result.add(resultItem); + } + queryProjectTypeResponse.setResult(result); + + return queryProjectTypeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryQuotaPlanScheduleResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryQuotaPlanScheduleResponseUnmarshaller.java index 91aadf0cef..7db9fc6ec2 100644 --- a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryQuotaPlanScheduleResponseUnmarshaller.java +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryQuotaPlanScheduleResponseUnmarshaller.java @@ -29,38 +29,38 @@ public class QueryQuotaPlanScheduleResponseUnmarshaller { public static QueryQuotaPlanScheduleResponse unmarshall(QueryQuotaPlanScheduleResponse queryQuotaPlanScheduleResponse, UnmarshallerContext _ctx) { queryQuotaPlanScheduleResponse.setRequestId(_ctx.stringValue("QueryQuotaPlanScheduleResponse.RequestId")); - queryQuotaPlanScheduleResponse.setSuccess(_ctx.booleanValue("QueryQuotaPlanScheduleResponse.Success")); - queryQuotaPlanScheduleResponse.setErrorMessage(_ctx.stringValue("QueryQuotaPlanScheduleResponse.ErrorMessage")); queryQuotaPlanScheduleResponse.setResultCode(_ctx.stringValue("QueryQuotaPlanScheduleResponse.ResultCode")); + queryQuotaPlanScheduleResponse.setErrorMessage(_ctx.stringValue("QueryQuotaPlanScheduleResponse.ErrorMessage")); + queryQuotaPlanScheduleResponse.setSuccess(_ctx.booleanValue("QueryQuotaPlanScheduleResponse.Success")); List result = new ArrayList(); for (int i = 0; i < _ctx.lengthValue("QueryQuotaPlanScheduleResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); - resultItem.setQuotaPlanId(_ctx.longValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].QuotaPlanId")); - resultItem.setProductCode(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].ProductCode")); + resultItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].Status")); resultItem.setCreatorNick(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].CreatorNick")); - resultItem.setCreatorWorkNo(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].CreatorWorkNo")); - resultItem.setConfigModel(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].ConfigModel")); - resultItem.setQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].Quantity")); + resultItem.setQuotaPlanId(_ctx.longValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].QuotaPlanId")); resultItem.setDeliveryDate(_ctx.longValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].DeliveryDate")); + resultItem.setConfigModel(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].ConfigModel")); resultItem.setTenantName(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].TenantName")); - resultItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].Status")); + resultItem.setCreatorWorkNo(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].CreatorWorkNo")); + resultItem.setQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].Quantity")); + resultItem.setProductCode(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].ProductCode")); List ladingScheduleList = new ArrayList(); for (int j = 0; j < _ctx.lengthValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList.Length"); j++) { LadingScheduleListItem ladingScheduleListItem = new LadingScheduleListItem(); - ladingScheduleListItem.setLadingId(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].LadingId")); + ladingScheduleListItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].Status")); ladingScheduleListItem.setQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].Quantity")); ladingScheduleListItem.setDeliveryQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].DeliveryQuantity")); - ladingScheduleListItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].Status")); + ladingScheduleListItem.setLadingId(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].LadingId")); List serverScheduleList = new ArrayList(); for (int k = 0; k < _ctx.lengthValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList.Length"); k++) { ServerScheduleListItem serverScheduleListItem = new ServerScheduleListItem(); + serverScheduleListItem.setType(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Type")); serverScheduleListItem.setSerialNumber(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].SerialNumber")); serverScheduleListItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Status")); serverScheduleListItem.setDelivery(_ctx.booleanValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Delivery")); - serverScheduleListItem.setType(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Type")); serverScheduleList.add(serverScheduleListItem); } diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QuerySupplyAreaResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QuerySupplyAreaResponseUnmarshaller.java new file mode 100644 index 0000000000..3146b09103 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QuerySupplyAreaResponseUnmarshaller.java @@ -0,0 +1,47 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.QuerySupplyAreaResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QuerySupplyAreaResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QuerySupplyAreaResponseUnmarshaller { + + public static QuerySupplyAreaResponse unmarshall(QuerySupplyAreaResponse querySupplyAreaResponse, UnmarshallerContext _ctx) { + + querySupplyAreaResponse.setRequestId(_ctx.stringValue("QuerySupplyAreaResponse.RequestId")); + querySupplyAreaResponse.setMessage(_ctx.stringValue("QuerySupplyAreaResponse.Message")); + querySupplyAreaResponse.setSuccess(_ctx.booleanValue("QuerySupplyAreaResponse.Success")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QuerySupplyAreaResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setArea(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Area")); + resultItem.set_Class(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Class")); + resultItem.setCountry(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Country")); + resultItem.setIdc(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Idc")); + + result.add(resultItem); + } + querySupplyAreaResponse.setResult(result); + + return querySupplyAreaResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryTemplateResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryTemplateResponseUnmarshaller.java new file mode 100644 index 0000000000..2e9c7ca51d --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/QueryTemplateResponseUnmarshaller.java @@ -0,0 +1,47 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.QueryTemplateResponse; +import com.aliyuncs.brinekingdom.model.v20190627.QueryTemplateResponse.ResultItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTemplateResponseUnmarshaller { + + public static QueryTemplateResponse unmarshall(QueryTemplateResponse queryTemplateResponse, UnmarshallerContext _ctx) { + + queryTemplateResponse.setRequestId(_ctx.stringValue("QueryTemplateResponse.RequestId")); + queryTemplateResponse.set_Class(_ctx.stringValue("QueryTemplateResponse.Class")); + queryTemplateResponse.setErrorMessage(_ctx.stringValue("QueryTemplateResponse.ErrorMessage")); + queryTemplateResponse.setSuccess(_ctx.booleanValue("QueryTemplateResponse.Success")); + queryTemplateResponse.setResultCode(_ctx.stringValue("QueryTemplateResponse.ResultCode")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryTemplateResponse.Result.Length"); i++) { + ResultItem resultItem = new ResultItem(); + resultItem.setId(_ctx.longValue("QueryTemplateResponse.Result["+ i +"].Id")); + resultItem.setName(_ctx.stringValue("QueryTemplateResponse.Result["+ i +"].Name")); + + result.add(resultItem); + } + queryTemplateResponse.setResult(result); + + return queryTemplateResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/ReceiveResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/ReceiveResponseUnmarshaller.java new file mode 100644 index 0000000000..fbb03fcd4d --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/ReceiveResponseUnmarshaller.java @@ -0,0 +1,48 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.ReceiveResponse; +import com.aliyuncs.brinekingdom.model.v20190627.ReceiveResponse.ConsistentDemandResponseList; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ReceiveResponseUnmarshaller { + + public static ReceiveResponse unmarshall(ReceiveResponse receiveResponse, UnmarshallerContext _ctx) { + + receiveResponse.setRequestId(_ctx.stringValue("ReceiveResponse.RequestId")); + receiveResponse.setMessage(_ctx.stringValue("ReceiveResponse.Message")); + receiveResponse.setSuccess(_ctx.booleanValue("ReceiveResponse.Success")); + + List result = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ReceiveResponse.Result.Length"); i++) { + ConsistentDemandResponseList consistentDemandResponseList = new ConsistentDemandResponseList(); + consistentDemandResponseList.setConsistentDemandId(_ctx.longValue("ReceiveResponse.Result["+ i +"].ConsistentDemandId")); + consistentDemandResponseList.setErrorMsg(_ctx.stringValue("ReceiveResponse.Result["+ i +"].ErrorMsg")); + consistentDemandResponseList.setSource(_ctx.stringValue("ReceiveResponse.Result["+ i +"].Source")); + consistentDemandResponseList.setSourceId(_ctx.stringValue("ReceiveResponse.Result["+ i +"].SourceId")); + consistentDemandResponseList.setSuccess(_ctx.booleanValue("ReceiveResponse.Result["+ i +"].Success")); + + result.add(consistentDemandResponseList); + } + receiveResponse.setResult(result); + + return receiveResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/RequestDemandReverseResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/RequestDemandReverseResponseUnmarshaller.java new file mode 100644 index 0000000000..b961b19e44 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/RequestDemandReverseResponseUnmarshaller.java @@ -0,0 +1,34 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.RequestDemandReverseResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class RequestDemandReverseResponseUnmarshaller { + + public static RequestDemandReverseResponse unmarshall(RequestDemandReverseResponse requestDemandReverseResponse, UnmarshallerContext _ctx) { + + requestDemandReverseResponse.setRequestId(_ctx.stringValue("RequestDemandReverseResponse.RequestId")); + requestDemandReverseResponse.setTraceId(_ctx.stringValue("RequestDemandReverseResponse.TraceId")); + requestDemandReverseResponse.setErrorMessage(_ctx.stringValue("RequestDemandReverseResponse.ErrorMessage")); + requestDemandReverseResponse.setResultCode(_ctx.stringValue("RequestDemandReverseResponse.ResultCode")); + requestDemandReverseResponse.setSuccess(_ctx.booleanValue("RequestDemandReverseResponse.Success")); + requestDemandReverseResponse.setResult(_ctx.booleanValue("RequestDemandReverseResponse.Result")); + + return requestDemandReverseResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/TrackResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/TrackResponseUnmarshaller.java new file mode 100644 index 0000000000..4e5d575c99 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/TrackResponseUnmarshaller.java @@ -0,0 +1,128 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse; +import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem; +import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem.ProgressListItem; +import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem.ProgressListItem.DeliveryInfoListItem; +import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem.ProgressListItem.FcstDeliveryListItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class TrackResponseUnmarshaller { + + public static TrackResponse unmarshall(TrackResponse trackResponse, UnmarshallerContext _ctx) { + + trackResponse.setRequestId(_ctx.stringValue("TrackResponse.RequestId")); + trackResponse.setMessage(_ctx.stringValue("TrackResponse.Message")); + trackResponse.setSuccess(_ctx.booleanValue("TrackResponse.Success")); + + List dataList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("TrackResponse.DataList.Length"); i++) { + DataListItem dataListItem = new DataListItem(); + dataListItem.setMoveQty(_ctx.integerValue("TrackResponse.DataList["+ i +"].MoveQty")); + dataListItem.setSourceId(_ctx.stringValue("TrackResponse.DataList["+ i +"].SourceId")); + dataListItem.setDemandId(_ctx.longValue("TrackResponse.DataList["+ i +"].DemandId")); + dataListItem.setSupplyQty(_ctx.integerValue("TrackResponse.DataList["+ i +"].SupplyQty")); + dataListItem.setExpectDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ExpectDate")); + dataListItem.setDemandStatus(_ctx.stringValue("TrackResponse.DataList["+ i +"].DemandStatus")); + dataListItem.setSource(_ctx.stringValue("TrackResponse.DataList["+ i +"].Source")); + + List progressList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("TrackResponse.DataList["+ i +"].ProgressList.Length"); j++) { + ProgressListItem progressListItem = new ProgressListItem(); + progressListItem.setRealDeliveryDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].RealDeliveryDate")); + progressListItem.setOrderErrorMsg(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].OrderErrorMsg")); + progressListItem.setSlaDeliveryDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].SlaDeliveryDate")); + progressListItem.setLadingCnt(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].LadingCnt")); + progressListItem.setOrderNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].OrderNumber")); + progressListItem.setExpectDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].ExpectDate")); + progressListItem.setDealCnt(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DealCnt")); + progressListItem.setDeliveryStatus(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryStatus")); + progressListItem.setDeliveryCnt(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryCnt")); + progressListItem.setRackStatus(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].RackStatus")); + progressListItem.setDeliveryType(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryType")); + + List fcstDeliveryList = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].FcstDeliveryList.Length"); k++) { + FcstDeliveryListItem fcstDeliveryListItem = new FcstDeliveryListItem(); + fcstDeliveryListItem.setFcstDeliveryDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].FcstDeliveryList["+ k +"].FcstDeliveryDate")); + fcstDeliveryListItem.setFcstDeliveryCnt(_ctx.integerValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].FcstDeliveryList["+ k +"].FcstDeliveryCnt")); + + fcstDeliveryList.add(fcstDeliveryListItem); + } + progressListItem.setFcstDeliveryList(fcstDeliveryList); + + List deliveryInfoList = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList.Length"); k++) { + DeliveryInfoListItem deliveryInfoListItem = new DeliveryInfoListItem(); + deliveryInfoListItem.setDeviceSource(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].DeviceSource")); + deliveryInfoListItem.setBrandCode(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].BrandCode")); + deliveryInfoListItem.setOrderNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].OrderNumber")); + deliveryInfoListItem.setCreator(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].Creator")); + deliveryInfoListItem.setLadingOrderTime(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].LadingOrderTime")); + deliveryInfoListItem.setTransferTypeDES(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferTypeDES")); + deliveryInfoListItem.setSecurityDomain(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].SecurityDomain")); + deliveryInfoListItem.setIdcName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].IdcName")); + deliveryInfoListItem.setParentFactoryModelName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ParentFactoryModelName")); + deliveryInfoListItem.setFinishTime(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].FinishTime")); + deliveryInfoListItem.setReceiveType(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ReceiveType")); + deliveryInfoListItem.setLoading(_ctx.integerValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].Loading")); + deliveryInfoListItem.setLogicZone(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].LogicZone")); + deliveryInfoListItem.setNetworkType(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].NetworkType")); + deliveryInfoListItem.setLogicZoneName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].LogicZoneName")); + deliveryInfoListItem.setTemplateName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TemplateName")); + deliveryInfoListItem.setKeepData(_ctx.booleanValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].KeepData")); + deliveryInfoListItem.setModelName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ModelName")); + deliveryInfoListItem.setRoomName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].RoomName")); + deliveryInfoListItem.setTransferNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferNumber")); + deliveryInfoListItem.setBatchNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].BatchNumber")); + deliveryInfoListItem.setPoNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].PoNumber")); + deliveryInfoListItem.setOsName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].OsName")); + deliveryInfoListItem.setErrorInfo(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ErrorInfo")); + deliveryInfoListItem.setPrNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].PrNumber")); + deliveryInfoListItem.setShipNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ShipNumber")); + deliveryInfoListItem.setInstallSwitch(_ctx.booleanValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].InstallSwitch")); + deliveryInfoListItem.setBusinessLabel(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].BusinessLabel")); + deliveryInfoListItem.setTransferType(_ctx.integerValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferType")); + deliveryInfoListItem.setProgressStepEnum(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ProgressStepEnum")); + deliveryInfoListItem.setPreInputTime(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].PreInputTime")); + deliveryInfoListItem.setGmtCreate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].GmtCreate")); + deliveryInfoListItem.setTransferName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferName")); + deliveryInfoListItem.setSourceAppGroup(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].SourceAppGroup")); + deliveryInfoListItem.setSourceIdcName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].SourceIdcName")); + deliveryInfoListItem.setRackName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].RackName")); + deliveryInfoListItem.setSn(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].Sn")); + deliveryInfoListItem.setAppGroupName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].AppGroupName")); + + deliveryInfoList.add(deliveryInfoListItem); + } + progressListItem.setDeliveryInfoList(deliveryInfoList); + + progressList.add(progressListItem); + } + dataListItem.setProgressList(progressList); + + dataList.add(dataListItem); + } + trackResponse.setDataList(dataList); + + return trackResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/WeeksSummaryQuotaResponseUnmarshaller.java b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/WeeksSummaryQuotaResponseUnmarshaller.java new file mode 100644 index 0000000000..d9f9467c99 --- /dev/null +++ b/aliyun-java-sdk-brinekingdom/src/main/java/com/aliyuncs/brinekingdom/transform/v20190627/WeeksSummaryQuotaResponseUnmarshaller.java @@ -0,0 +1,42 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.aliyuncs.brinekingdom.transform.v20190627; + +import com.aliyuncs.brinekingdom.model.v20190627.WeeksSummaryQuotaResponse; +import com.aliyuncs.brinekingdom.model.v20190627.WeeksSummaryQuotaResponse.Result; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class WeeksSummaryQuotaResponseUnmarshaller { + + public static WeeksSummaryQuotaResponse unmarshall(WeeksSummaryQuotaResponse weeksSummaryQuotaResponse, UnmarshallerContext _ctx) { + + weeksSummaryQuotaResponse.setMessage(_ctx.stringValue("WeeksSummaryQuotaResponse.Message")); + weeksSummaryQuotaResponse.setSuccess(_ctx.booleanValue("WeeksSummaryQuotaResponse.Success")); + + Result result = new Result(); + result.setExpectDate(_ctx.longValue("WeeksSummaryQuotaResponse.Result.ExpectDate")); + result.setForecastTotal(_ctx.longValue("WeeksSummaryQuotaResponse.Result.ForecastTotal")); + result.setModel(_ctx.stringValue("WeeksSummaryQuotaResponse.Result.Model")); + result.setNic(_ctx.stringValue("WeeksSummaryQuotaResponse.Result.Nic")); + result.setOrgName(_ctx.stringValue("WeeksSummaryQuotaResponse.Result.OrgName")); + result.setPlannedAvailable(_ctx.longValue("WeeksSummaryQuotaResponse.Result.PlannedAvailable")); + result.setReplenishable(_ctx.longValue("WeeksSummaryQuotaResponse.Result.Replenishable")); + result.setSupplyCnt(_ctx.longValue("WeeksSummaryQuotaResponse.Result.SupplyCnt")); + weeksSummaryQuotaResponse.setResult(result); + + return weeksSummaryQuotaResponse; + } +} \ No newline at end of file