info.gratour.jtmodel.trk.AnalogQty 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!
package info.gratour.jtmodel.trk;
public class AnalogQty {
private int ad0;
private int ad1;
public int getAd0() {
return ad0;
}
public void setAd0(int ad0) {
this.ad0 = ad0;
}
public int getAd1() {
return ad1;
}
public void setAd1(int ad1) {
this.ad1 = ad1;
}
@Override
public String toString() {
return "AnalogQty{" +
"ad0=" + ad0 +
", ad1=" + ad1 +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy