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

io.github.linmoure.params.channel.Channel Maven / Gradle / Ivy

There is a newer version: 1.1.11
Show newest version
package io.github.linmoure.params.channel;

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

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

    @Data
    public static class ChannelIn implements Cloneable {
        /**
         * 通道编号
         */
        private String chnlNo;
        /**
         * 通道名称
         */
        private String chnlName;
        /**
         * 车道类型一类:0,货运车道 1,行政车道
         */
        private Integer chnlType;
        /**
         * 车道类型二类:0,进口业务通道 1,出口业务通道
         */
        private Integer type;
        /**
         * 车道类型三类:0,国内车 1,蒙古车 2,行政车
         */
        private Integer carType;
        /**
         * 车道方向:I,进场;E,出场
         */
        private String chnlDirection;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy