TLocationCheckService.java 623 B

123456789101112131415161718192021222324
  1. package com.szwl.service;
  2. import com.fasterxml.jackson.core.JsonProcessingException;
  3. import com.szwl.model.entity.TLocationCheck;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import java.io.IOException;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author wuhs
  12. * @since 2023-12-25
  13. */
  14. public interface TLocationCheckService extends IService<TLocationCheck> {
  15. String locCheckMsg(TLocationCheck locationCheck, String clientId, String addr) throws IOException;
  16. String schLocCheck(TLocationCheck locationCheck, String clientId, String addr);
  17. void schSendMsg(String locErrorEq) throws IOException;
  18. }