package targets;
|
public class MessageType {
|
private int id;
|
private String typeCode;
|
private String typeName;
|
private String addTime;
|
|
// Getter Methods
|
public int getId() {
|
return id;
|
}
|
|
public String getTypeCode() {
|
return typeCode;
|
}
|
|
public String getTypeName() {
|
return typeName;
|
}
|
|
public String getAddTime() {
|
return addTime;
|
}
|
|
// Setter Methods
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public void setTypeCode(String typeCode) {
|
this.typeCode = typeCode;
|
}
|
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
|
public void setAddTime(String addTime) {
|
this.addTime = addTime;
|
}
|
|
// toString Method for Printing Object Information
|
@Override
|
public String toString() {
|
return "MessageType{" +
|
"id=" + id +
|
", typeCode='" + typeCode + '\'' +
|
", typeName='" + typeName + '\'' +
|
", addTime='" + addTime + '\'' +
|
'}';
|
}
|
}
|