123456789101112131415161718192021222324 |
- package com.szwl.service;
- import com.fasterxml.jackson.core.JsonProcessingException;
- import com.szwl.model.entity.TLocationCheck;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.io.IOException;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author wuhs
- * @since 2023-12-25
- */
- public interface TLocationCheckService extends IService<TLocationCheck> {
- String locCheckMsg(TLocationCheck locationCheck, String clientId, String addr) throws IOException;
- String schLocCheck(TLocationCheck locationCheck, String clientId, String addr);
- void schSendMsg(String locErrorEq) throws IOException;
- }
|