Blame view

MatchCollegePdfService.java 535 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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);
}