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

io.github.linmoure.params.billOfLadManage.BillOfLadManage Maven / Gradle / Ivy

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

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

import java.math.BigDecimal;

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

    @Data
    public static class BillOfLadManageIn implements Cloneable {
        /**
         * 唯一标识
         */
        private String identification;
        /**
         * 企业名称
         */
        private String enterpriseName;
        /**
         * 批次号
         */
        private String batchNumber;
        /**
         * 批次重量
         */
        private String batchWeight;
        /**
         * 货物代码
         */
        private String goodsCode;
        /**
         * 介质信息
         */
        private String mediaInfo;
        /**
         * 毛重
         */
        private BigDecimal grossWeight;
        /**
         * 毛重通道
         */
        private String grossChnl;
        /**
         * 毛重时间
         */
        private String grossWeightTime;
        /**
         * 皮重
         */
        private BigDecimal tare;
        /**
         * 皮重通道
         */
        private String tareChnl;
        /**
         * 皮重时间
         */
        private String tareTime;
        /**
         * 绑定对象ID
         */
        private String bindObjId;
        /**
         * 煤棚名称
         */
        private String coalShedName;


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy