info.gratour.jtmodel.govissue.GovIssueAckMsg 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.govissue;
public class GovIssueAckMsg {
public static final int TYP__GOV_INSPECT_ACK = 1;
public static final int TYP__ALM_SUPERVISE_ACK = 2;
private int typ;
private Object msg;
public int getTyp() {
return typ;
}
public void setTyp(int typ) {
this.typ = typ;
}
public Object getMsg() {
return msg;
}
public void setMsg(Object msg) {
this.msg = msg;
}
@Override
public String toString() {
return "GovIssueAckMsg{" +
"typ=" + typ +
", msg=" + msg +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy