BgService.java 498 B

1234567891011121314151617181920212223242526272829303132
  1. package top.lvzhiqiang.service;
  2. import java.io.InputStream;
  3. /**
  4. * Bg Service
  5. *
  6. * @author lvzhiqiang
  7. * 2022/4/16 16:03
  8. */
  9. public interface BgService {
  10. /**
  11. * 初始化骑兵数据
  12. */
  13. void initQibingData();
  14. /**
  15. * 上传识别码文件
  16. *
  17. * @param is
  18. */
  19. void uploadFile4IdentificationCode(InputStream is, Integer isDel);
  20. /**
  21. * Jsoup IcodePool
  22. *
  23. * @param status
  24. */
  25. void jsoupIcodePool(Integer status, Integer isDel);
  26. }