info.gratour.jtmodel.rgn.PlatRgnGrp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt-core Show documentation
Show all versions of jt-core Show documentation
`jt-core` is a java/scala communication processing library for JT808/JT809/JT1078 standard.
The newest version!
/*******************************************************************************
* Copyright (c) 2019, 2020 lucendar.com.
* All rights reserved.
*
* Contributors:
* KwanKin Yau ([email protected]) - initial API and implementation
*******************************************************************************/
package info.gratour.jtmodel.rgn;
public class PlatRgnGrp {
private String platRgnId;
private String platRgnName;
private long grpId;
private String grpName;
public String getPlatRgnId() {
return platRgnId;
}
public void setPlatRgnId(String platRgnId) {
this.platRgnId = platRgnId;
}
public String getPlatRgnName() {
return platRgnName;
}
public void setPlatRgnName(String platRgnName) {
this.platRgnName = platRgnName;
}
public long getGrpId() {
return grpId;
}
public void setGrpId(long grpId) {
this.grpId = grpId;
}
public String getGrpName() {
return grpName;
}
public void setGrpName(String grpName) {
this.grpName = grpName;
}
@Override
public String toString() {
return "PlatRgnGrp{" +
"platRgnId='" + platRgnId + '\'' +
", platRgnName='" + platRgnName + '\'' +
", grpId=" + grpId +
", grpName='" + grpName + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy