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; /** *

* 服务类 *

* * @author wuhs * @since 2023-12-25 */ public interface TLocationCheckService extends IService { String locCheckMsg(TLocationCheck locationCheck, String clientId, String addr) throws IOException; String schLocCheck(TLocationCheck locationCheck, String clientId, String addr); void schSendMsg(String locErrorEq) throws IOException; }