info.gratour.adaptor.GovIssueRepo 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.adaptor;
import info.gratour.adaptor.types.MarkInspectAckSentReq;
import info.gratour.jtmodel.govissue.AlmSupervise;
import info.gratour.jtmodel.govissue.GovInspect;
public interface GovIssueRepo {
void createGovInspect(GovInspect req);
/**
*
* @param req Alarm supervise request object
* @return the AlmSupervise with tm property, note: the grpName does not filled
*/
AlmSupervise createAlmSupervise(AlmSupervise req);
void markGovInspectAckSent(MarkInspectAckSentReq req);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy