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

io.github.linmoure.params.declare.GroceriesDeclare Maven / Gradle / Ivy

package io.github.linmoure.params.declare;

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

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

    @Data
    public static class GroceriesDeclareIn implements Cloneable {
        /**
         * 介质信息
         */
        private String mediaInfo;
        /**
         * 批次号
         */
        private String batchNumber;
        /**
         * 批次号重量
         */
        private String batchWeight;
        /**
         * 货物名称
         */
        private String goodsCode;
        /**
         * 申报时间
         */
        private String declareTime;
        /**
         * 集装箱号
         */
        private String containerNumber;
        /**
         * 集装箱重量
         */
        private String containerWeight;
        /**
         * 唯一标识
         */
        private String identification;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy