package top.lvzhiqiang.service; import java.io.InputStream; /** * Bg Service * * @author lvzhiqiang * 2022/4/16 16:03 */ public interface BgService { /** * 初始化骑兵数据 */ void initQibingData(); /** * 上传识别码文件 * * @param is */ void uploadFile4IdentificationCode(InputStream is, Integer isDel); /** * Jsoup IcodePool * * @param status */ void jsoupIcodePool(Integer status, Integer isDel); }