com.aliyun.dingtalkmanufacturing_1_0.models.IndustrializeManufactureQueryJobsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkmanufacturing_1_0.models;
import com.aliyun.tea.*;
public class IndustrializeManufactureQueryJobsRequest extends TeaModel {
// 当前页序号(从1开始)
@NameInMap("currentPage")
public Integer currentPage;
// 工单编号
@NameInMap("instNo")
public String instNo;
// 生产日期
@NameInMap("manufactureDay")
public String manufactureDay;
// MES系统唯一标识
@NameInMap("mesAppKey")
public String mesAppKey;
// 每页显示记录条数
@NameInMap("pageSize")
public Integer pageSize;
// 工序名称
@NameInMap("processName")
public String processName;
// 产品唯一标识
@NameInMap("productCode")
public String productCode;
// 产品中文名称
@NameInMap("productName")
public String productName;
// 产品规格
@NameInMap("productSpecification")
public String productSpecification;
// 报工合格数量
@NameInMap("qualifiedQuantity")
public String qualifiedQuantity;
// 计件单价,单位:分
@NameInMap("unitPrice")
public String unitPrice;
// 员工钉钉userId
@NameInMap("userId")
public String userId;
// 批量报工时多个人钉钉工号以英文逗号分隔
@NameInMap("userIdList")
public String userIdList;
// 员工姓名
@NameInMap("userName")
public String userName;
// 报工记录的唯一标识
@NameInMap("uuid")
public String uuid;
public static IndustrializeManufactureQueryJobsRequest build(java.util.Map map) throws Exception {
IndustrializeManufactureQueryJobsRequest self = new IndustrializeManufactureQueryJobsRequest();
return TeaModel.build(map, self);
}
public IndustrializeManufactureQueryJobsRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public IndustrializeManufactureQueryJobsRequest setInstNo(String instNo) {
this.instNo = instNo;
return this;
}
public String getInstNo() {
return this.instNo;
}
public IndustrializeManufactureQueryJobsRequest setManufactureDay(String manufactureDay) {
this.manufactureDay = manufactureDay;
return this;
}
public String getManufactureDay() {
return this.manufactureDay;
}
public IndustrializeManufactureQueryJobsRequest setMesAppKey(String mesAppKey) {
this.mesAppKey = mesAppKey;
return this;
}
public String getMesAppKey() {
return this.mesAppKey;
}
public IndustrializeManufactureQueryJobsRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public IndustrializeManufactureQueryJobsRequest setProcessName(String processName) {
this.processName = processName;
return this;
}
public String getProcessName() {
return this.processName;
}
public IndustrializeManufactureQueryJobsRequest setProductCode(String productCode) {
this.productCode = productCode;
return this;
}
public String getProductCode() {
return this.productCode;
}
public IndustrializeManufactureQueryJobsRequest setProductName(String productName) {
this.productName = productName;
return this;
}
public String getProductName() {
return this.productName;
}
public IndustrializeManufactureQueryJobsRequest setProductSpecification(String productSpecification) {
this.productSpecification = productSpecification;
return this;
}
public String getProductSpecification() {
return this.productSpecification;
}
public IndustrializeManufactureQueryJobsRequest setQualifiedQuantity(String qualifiedQuantity) {
this.qualifiedQuantity = qualifiedQuantity;
return this;
}
public String getQualifiedQuantity() {
return this.qualifiedQuantity;
}
public IndustrializeManufactureQueryJobsRequest setUnitPrice(String unitPrice) {
this.unitPrice = unitPrice;
return this;
}
public String getUnitPrice() {
return this.unitPrice;
}
public IndustrializeManufactureQueryJobsRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public IndustrializeManufactureQueryJobsRequest setUserIdList(String userIdList) {
this.userIdList = userIdList;
return this;
}
public String getUserIdList() {
return this.userIdList;
}
public IndustrializeManufactureQueryJobsRequest setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
public IndustrializeManufactureQueryJobsRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}