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-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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 = 2175159365292955876L;
/**
* 批次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;
}
}