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

io.github.linmoure.params.warehouseReceipt.WarehouseReceipt 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;
import lombok.EqualsAndHashCode;

import java.math.BigDecimal;

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

    @Data
    public static class WarehouseReceiptIn implements Cloneable {

        /**
         * 企业名称
         */
        private String enterpriseName;
        /**
         * 批次号
         */
        private String batchNumber;
        /**
         * 批次重量
         */
        private String batchWeight;
        /**
         * 车牌号
         */
        private String carNo;
        /**
         * 海关货物种类标准代码
         * https://www.singlewindow.cn/#/parameterDetail?pqcode=SwGoodsType
         */
        private String goodsCode;
        /**
         * 毛重
         */
        private BigDecimal grossWeight;
        /**
         * 毛重通道
         */
        private String grossChnl;
        /**
         * 毛重时间
         */
        private String grossWeightTime;
        /**
         * 皮重
         */
        private BigDecimal tare;
        /**
         * 皮重通道
         */
        private String tareChnl;
        /**
         * 皮重时间
         */
        private String tareTime;
        /**
         * 绑定对象ID
         */
        private String bindObjId;
        /**
         * 货物去向1:堆场2:煤棚
         */
        private String destination;
        /**
         * 堆场或煤棚名称
         */
        private String destinationName;


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy