MatchCollegePdfService.java 567 Bytes
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)throws Exception;

    void dropPdf(MatchCollegePdfDO matchCollegePdfDO)throws Exception;

    MatchCollegePdfDO queryPdfStatus(MatchCollegePdfDO matchCollegePdfDO);
}