You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.8 KiB
Java
82 lines
1.8 KiB
Java
package com.example.entity;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class ContainerRegisterQuery implements Serializable {
|
|
|
|
private String messageHeader;
|
|
private String containerRegisterQuery;
|
|
// private String opOrgCode;
|
|
// private String userCode;
|
|
// private String userName;
|
|
// private String province;
|
|
private String pdaip;
|
|
private int commandCode;
|
|
|
|
public int getCommandCode() {
|
|
return commandCode;
|
|
}
|
|
|
|
public void setCommandCode(int commandCode) {
|
|
this.commandCode = commandCode;
|
|
}
|
|
public String getMessageHeader() {
|
|
return messageHeader;
|
|
}
|
|
|
|
public void setMessageHeader(String messageHeader) {
|
|
this.messageHeader = messageHeader;
|
|
}
|
|
|
|
public String getContainerRegisterQuery() {
|
|
return containerRegisterQuery;
|
|
}
|
|
|
|
public void setContainerRegisterQuery(String containerRegisterQuery) {
|
|
this.containerRegisterQuery = containerRegisterQuery;
|
|
}
|
|
//
|
|
//
|
|
// public String getOpOrgCode() {
|
|
// return opOrgCode;
|
|
// }
|
|
//
|
|
// public void setOpOrgCode(String opOrgCode) {
|
|
// this.opOrgCode = opOrgCode;
|
|
// }
|
|
//
|
|
// public String getUserCode() {
|
|
// return userCode;
|
|
// }
|
|
//
|
|
// public void setUserCode(String userCode) {
|
|
// this.userCode = userCode;
|
|
// }
|
|
//
|
|
// public String getUserName() {
|
|
// return userName;
|
|
// }
|
|
//
|
|
// public void setUserName(String userName) {
|
|
// this.userName = userName;
|
|
// }
|
|
//
|
|
// public String getProvince() {
|
|
// return province;
|
|
// }
|
|
//
|
|
// public void setProvince(String province) {
|
|
// this.province = province;
|
|
// }
|
|
|
|
public String getPdaip() {
|
|
return pdaip;
|
|
}
|
|
|
|
public void setPdaip(String pdaip) {
|
|
this.pdaip = pdaip;
|
|
}
|
|
|
|
|
|
}
|