| | |
| | | package com.gkhy.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.system.domain.ProjectFile; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 项目附件Mapper接口 |
| | |
| | | * @author expert |
| | | * @date 2024-11-14 |
| | | */ |
| | | public interface ProjectFileMapper |
| | | public interface ProjectFileMapper extends BaseMapper<ProjectFile> |
| | | { |
| | | /** |
| | | * 查询项目附件 |
| | |
| | | */ |
| | | public int insertProjectFile(ProjectFile projectFile); |
| | | |
| | | int insertProjectFiles(List<ProjectFile> files); |
| | | |
| | | /** |
| | | * 修改项目附件 |
| | | * |
| | |
| | | */ |
| | | public int deleteProjectFileById(Long id); |
| | | |
| | | int deleteProjectFileByIdAndType(@Param("projectId") Long projectId,@Param("module") String module); |
| | | |
| | | /** |
| | | * 批量删除项目附件 |
| | | * |