TLocationCheckService.java 710 B

1234567891011121314151617181920212223242526
  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 locCheckNoMsg(TLocationCheck locationCheck, String clientId, String addr);
  16. String locCheckMsg(TLocationCheck locationCheck, String clientId, String addr) throws IOException;
  17. String schLocCheck(TLocationCheck locationCheck, String clientId, String addr);
  18. void schSendMsg(String locErrorEq) throws IOException;
  19. }