BgService.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 initVideoInfoData(Integer type, Integer isDel, String infantryType);
  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. /**
  27. * 单个识别码
  28. *
  29. * @param identificationCode
  30. */
  31. void single4IdentificationCode(String identificationCode);
  32. /**
  33. * findDicCode
  34. *
  35. * @author lvzhiqiang
  36. * 2022/5/3 17:37
  37. */
  38. String findDicCode(String codeDesc, String order) throws IllegalAccessException;
  39. /**
  40. * findIcodePool
  41. *
  42. * @author lvzhiqiang
  43. * 2022/5/3 17:37
  44. */
  45. String findIcodePool(String identificationCode, Integer status, String order) throws IllegalAccessException;
  46. /**
  47. * findVideoSitePool
  48. *
  49. * @author lvzhiqiang
  50. * 2022/5/3 17:37
  51. */
  52. String findVideoSitePool(String url, String order) throws IllegalAccessException;
  53. /**
  54. * findVideoInfoPool
  55. *
  56. * @author lvzhiqiang
  57. * 2022/5/3 17:37
  58. */
  59. String findVideoInfoPool(String identificationCode, Integer type, String order, String crudT) throws IllegalAccessException;
  60. /**
  61. * findVideoInfo
  62. *
  63. * @author lvzhiqiang
  64. * 2022/5/3 17:37
  65. */
  66. String findVideoInfo(String identificationCode, Integer type, String order, String crudT) throws IllegalAccessException;
  67. /**
  68. * updateScoreOrComment
  69. *
  70. * @author lvzhiqiang
  71. * 2022/5/4 9:54
  72. */
  73. String insertOrUpdateScoreOrComment(String identificationCode, String score, String comment);
  74. /**
  75. * Jsoup VideoInfoUncensored
  76. *
  77. * @author lvzhiqiang
  78. * 2022/5/4 19:27
  79. */
  80. void jsoupVideoInfoUncensored(Integer status);
  81. /**
  82. * Jsoup VideoInfo
  83. *
  84. * @author lvzhiqiang
  85. * 2022/5/5 18:21
  86. */
  87. void jsoupVideoInfo(Integer status);
  88. }