
com.aliyun.dingtalkindustry_1_0.models.IndustryManufactureMesProcessRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class IndustryManufactureMesProcessRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* add
*/
@NameInMap("action")
public String action;
/**
* This parameter is required.
*
* example:
* opsoft
*/
@NameInMap("appKey")
public String appKey;
/**
* example:
* process
*/
@NameInMap("baseDataName")
public String baseDataName;
@NameInMap("extendData")
public java.util.List extendData;
/**
* example:
* 打磨
*/
@NameInMap("name")
public String name;
/**
* example:
* y
*/
@NameInMap("needDispatch")
public String needDispatch;
/**
* example:
* n
*/
@NameInMap("needQualityTest")
public String needQualityTest;
/**
* example:
* 011354
*/
@NameInMap("no")
public String no;
/**
* example:
* 0.21
*/
@NameInMap("price")
public String price;
/**
* example:
* 自制
*/
@NameInMap("prop")
public String prop;
/**
* example:
* 这里是备注
*/
@NameInMap("remark")
public String remark;
/**
* example:
* 止口面攻牙的操作方法
*/
@NameInMap("sop")
public String sop;
/**
* This parameter is required.
*
* example:
* 39C1E213-86B2-706B-9615-5B957DF8C15D
*/
@NameInMap("uuid")
public String uuid;
public static IndustryManufactureMesProcessRequest build(java.util.Map map) throws Exception {
IndustryManufactureMesProcessRequest self = new IndustryManufactureMesProcessRequest();
return TeaModel.build(map, self);
}
public IndustryManufactureMesProcessRequest setAction(String action) {
this.action = action;
return this;
}
public String getAction() {
return this.action;
}
public IndustryManufactureMesProcessRequest setAppKey(String appKey) {
this.appKey = appKey;
return this;
}
public String getAppKey() {
return this.appKey;
}
public IndustryManufactureMesProcessRequest setBaseDataName(String baseDataName) {
this.baseDataName = baseDataName;
return this;
}
public String getBaseDataName() {
return this.baseDataName;
}
public IndustryManufactureMesProcessRequest setExtendData(java.util.List extendData) {
this.extendData = extendData;
return this;
}
public java.util.List getExtendData() {
return this.extendData;
}
public IndustryManufactureMesProcessRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public IndustryManufactureMesProcessRequest setNeedDispatch(String needDispatch) {
this.needDispatch = needDispatch;
return this;
}
public String getNeedDispatch() {
return this.needDispatch;
}
public IndustryManufactureMesProcessRequest setNeedQualityTest(String needQualityTest) {
this.needQualityTest = needQualityTest;
return this;
}
public String getNeedQualityTest() {
return this.needQualityTest;
}
public IndustryManufactureMesProcessRequest setNo(String no) {
this.no = no;
return this;
}
public String getNo() {
return this.no;
}
public IndustryManufactureMesProcessRequest setPrice(String price) {
this.price = price;
return this;
}
public String getPrice() {
return this.price;
}
public IndustryManufactureMesProcessRequest setProp(String prop) {
this.prop = prop;
return this;
}
public String getProp() {
return this.prop;
}
public IndustryManufactureMesProcessRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public IndustryManufactureMesProcessRequest setSop(String sop) {
this.sop = sop;
return this;
}
public String getSop() {
return this.sop;
}
public IndustryManufactureMesProcessRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
public static class IndustryManufactureMesProcessRequestExtendData extends TeaModel {
/**
* example:
* username
*/
@NameInMap("code")
public String code;
/**
* example:
* 生产人员
*/
@NameInMap("name")
public String name;
/**
* example:
* 李四
*/
@NameInMap("value")
public String value;
/**
* example:
* string
*/
@NameInMap("valueType")
public String valueType;
public static IndustryManufactureMesProcessRequestExtendData build(java.util.Map map) throws Exception {
IndustryManufactureMesProcessRequestExtendData self = new IndustryManufactureMesProcessRequestExtendData();
return TeaModel.build(map, self);
}
public IndustryManufactureMesProcessRequestExtendData setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public IndustryManufactureMesProcessRequestExtendData setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public IndustryManufactureMesProcessRequestExtendData setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
public IndustryManufactureMesProcessRequestExtendData setValueType(String valueType) {
this.valueType = valueType;
return this;
}
public String getValueType() {
return this.valueType;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy