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); }