package com.thhy.pm.modules.biz.projectinfo.mapper;
|
|
import com.thhy.pm.modules.biz.projectinfo.entity.ProInfoFile;
|
import com.thhy.pm.modules.biz.projectinfo.entity.ProInfoFileListVo;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-04-24 17:16:26
|
*/
|
@Component
|
public interface ProInfoFileMapper {
|
|
|
ProInfoFile queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<ProInfoFileListVo> findList(ProInfoFile proinfofile);
|
|
List<ProInfoFile> findAll();
|
|
void insert(ProInfoFile proinfofile);
|
|
void update(ProInfoFile proinfofile);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
|
void deleteByProId(String proInfoId);
|
}
|