All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.linmoure.params.warehouseReceipt.WarehouseReceiptContainerInfo Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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();
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy