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

io.github.linmoure.params.container.Information Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.linmoure.params.container;

import io.github.linmoure.params.WSBaseParam;
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * @author 李衡林
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class Information extends WSBaseParam {


    @Data
    public static class InformationIn implements Cloneable {

        /**
         * 批次号
         */
        private String batchNumber;
        /**
         * 批次重量
         */
        private String batchWeight;
        /**
         * 报关单号
         */
        private String deliveryNumbers;
        /**
         * 集装箱号
         */
        private String containerNumber;
        /**
         * 集装箱重量
         */
        private String containerWeight;
        /**
         * 货物代码
         */
        private String goodsCode;
        /**
         * 报关单号
         */
        private String customsDeclarationNo;
        /**
         * 运输方式
         */
        private String shippingType;

        @Override
        public InformationIn clone() {
            try {
                return (InformationIn) super.clone();
            } catch (CloneNotSupportedException e) {
                throw new AssertionError();
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy