![JAR search and dependency download from the Maven repository](/logo.png)
io.github.linmoure.params.container.ContainerManagement Maven / Gradle / Ivy
package io.github.linmoure.params.container;
import io.github.linmoure.params.WSBaseParam;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* @author 李衡林
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class ContainerManagement extends WSBaseParam {
@Data
public static class ContainerManagementIn implements Cloneable {
/**
* 通道编号
*/
private String chnlNo;
/**
* 通道名称
*/
private String chnlName;
/**
* 集装箱号
*/
private String containerNumber;
/**
* [蒙煤集装箱进厂:MENG_MEI_IN][蒙煤集装箱出场:MENG_MEI_OUT][外调集装箱进场:GUO_NEI_IN][外调集装箱出场:GUO_NEI_OUT]
*/
private String type;
@Override
public ContainerManagementIn clone() {
try {
ContainerManagementIn clone = (ContainerManagementIn) super.clone();
return clone;
} catch (CloneNotSupportedException e) {
throw new AssertionError();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy