io.github.linmoure.params.warehouseReceipt.WarehouseReceiptContainerInfo Maven / Gradle / Ivy
package io.github.linmoure.params.warehouseReceipt;
import io.github.linmoure.params.WSBaseParam;
import lombok.Data;
public class WarehouseReceiptContainerInfo extends WSBaseParam {
@Data
public static class WarehouseReceiptContainerInfoIn implements Cloneable {
private String batchNumber;
private String containerNumber;
private String containerWeight;
private Integer status;
private String enterpriseName;
@Override
public WarehouseReceiptContainerInfo.WarehouseReceiptContainerInfoIn clone() {
try {
return (WarehouseReceiptContainerInfo.WarehouseReceiptContainerInfoIn) super.clone();
} catch (CloneNotSupportedException e) {
throw new AssertionError();
}
}
}
}