package com.zhongzhi.service; import com.zhongzhi.model.MatchCollegePdfDO; import com.baomidou.mybatisplus.extension.service.IService; import com.zhongzhi.vo.project.QueryPdfStatusVO; /** * <p> * 服务类 * </p> * * @author DengMin * @since 2024-06-25 */ public interface MatchCollegePdfService extends IService<MatchCollegePdfDO> { void uploadPdf(MatchCollegePdfDO matchCollegePdfDO); void dropPdf(MatchCollegePdfDO matchCollegePdfDO); MatchCollegePdfDO queryPdfStatus(MatchCollegePdfDO matchCollegePdfDO); }