| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package top.lvzhiqiang.service;
- import java.io.InputStream;
- /**
- * Bg Service
- *
- * @author lvzhiqiang
- * 2022/4/16 16:03
- */
- public interface BgService {
- /**
- * 初始化影片数据
- */
- void initVideoInfoData(Integer type, Integer isDel, String infantryType);
- /**
- * 上传识别码文件
- *
- * @param is
- */
- void uploadFile4IdentificationCode(InputStream is, Integer isDel);
- /**
- * Jsoup IcodePool
- *
- * @param status
- */
- void jsoupIcodePool(Integer status, Integer isDel);
- /**
- * 单个识别码
- *
- * @param identificationCode
- */
- void single4IdentificationCode(String identificationCode);
- /**
- * findDicCode
- *
- * @author lvzhiqiang
- * 2022/5/3 17:37
- */
- String findDicCode(String codeDesc, String order) throws IllegalAccessException;
- /**
- * findIcodePool
- *
- * @author lvzhiqiang
- * 2022/5/3 17:37
- */
- String findIcodePool(String identificationCode, Integer status, String order) throws IllegalAccessException;
- /**
- * findVideoSitePool
- *
- * @author lvzhiqiang
- * 2022/5/3 17:37
- */
- String findVideoSitePool(String url, String order) throws IllegalAccessException;
- /**
- * findVideoInfoPool
- *
- * @author lvzhiqiang
- * 2022/5/3 17:37
- */
- String findVideoInfoPool(String identificationCode, Integer type, String order, String crudT) throws IllegalAccessException;
- /**
- * findVideoInfo
- *
- * @author lvzhiqiang
- * 2022/5/3 17:37
- */
- String findVideoInfo(String identificationCode, Integer type, String order, String crudT) throws IllegalAccessException;
- /**
- * updateScoreOrComment
- *
- * @author lvzhiqiang
- * 2022/5/4 9:54
- */
- String insertOrUpdateScoreOrComment(String identificationCode, String score, String comment);
- /**
- * Jsoup VideoInfoUncensored
- *
- * @author lvzhiqiang
- * 2022/5/4 19:27
- */
- void jsoupVideoInfoUncensored(Integer status);
- /**
- * Jsoup VideoInfo
- *
- * @author lvzhiqiang
- * 2022/5/5 18:21
- */
- void jsoupVideoInfo(Integer status);
- }
|