项目关键人员,项目其他人员管理,文件上传和文件删除

This commit is contained in:
马三炮 2025-04-23 08:57:57 +08:00
parent c699f2d40c
commit 5252de466b
4 changed files with 20 additions and 1 deletions

View File

@ -22,5 +22,10 @@ public interface TbFileSourceService {
*/
void addTbFileSource(List<TbFileSourceVo> tbFileSourceVoList, Long tableId, String tableName);
/**
* 删除附件信息
* @param tableId
* @param tableName
*/
void delTbFileSource(Long tableId, String tableName);
}

View File

@ -33,6 +33,10 @@ public interface TbOtherPeopleService {
* @return
*/
void updateTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo);
/**
* 其他人员删除
* @param
* @return
*/
void delTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo) throws Exception;
}

View File

@ -53,6 +53,11 @@ public class TbFileSourceServiceImpl implements TbFileSourceService {
}
}
/**
* 删除附件信息
* @param tableId
* @param tableName
*/
@Override
public void delTbFileSource(Long tableId, String tableName) {
tbFileSourceMapper.delTbFileSource(tableId,tableName);

View File

@ -97,6 +97,11 @@ public class TbOtherPeopleServiceImpl implements TbOtherPeopleService {
}
/**
* 其他人员删除
* @param
* @return
*/
@Override
@Transactional
public void delTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo) throws Exception {