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

io.github.linmoure.params.export.ExportDocuments Maven / Gradle / Ivy

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

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

import java.math.BigDecimal;

@EqualsAndHashCode(callSuper = true)
@Data
public class ExportDocuments extends WSBaseParam {

    @Data
    public static class ExportDocumentsIn implements Cloneable {

        private String enterpriseName;

        private String goodsType;

        private String goodsName;

        private Integer goodsNumber;

        private BigDecimal grossWeight;

        private BigDecimal tare;

        private String inDate;

        private String outDate;

        private String carNo;

        private Integer heavyBoxNum;

        private Integer transportCartNum;

        private String packagingType;

        private String identification;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy