com.alipay.api.domain.OpenBatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 云验收单品批次
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:38
*/
public class OpenBatch extends AlipayObject {
private static final long serialVersionUID = 1531619215555774958L;
/**
* 批次id
*/
@ApiField("batch_id")
private String batchId;
/**
* 批次状态
0,未检测
1,检测中
2,未通过
3,已通过
*/
@ApiField("batch_status")
private String batchStatus;
/**
* 单品数
*/
@ApiField("item_num")
private String itemNum;
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public String getBatchStatus() {
return this.batchStatus;
}
public void setBatchStatus(String batchStatus) {
this.batchStatus = batchStatus;
}
public String getItemNum() {
return this.itemNum;
}
public void setItemNum(String itemNum) {
this.itemNum = itemNum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy