项目关键人员,项目其他人员管理,文件上传和文件删除
This commit is contained in:
parent
c699f2d40c
commit
5252de466b
|
|
@ -22,5 +22,10 @@ public interface TbFileSourceService {
|
||||||
*/
|
*/
|
||||||
void addTbFileSource(List<TbFileSourceVo> tbFileSourceVoList, Long tableId, String tableName);
|
void addTbFileSource(List<TbFileSourceVo> tbFileSourceVoList, Long tableId, String tableName);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除附件信息
|
||||||
|
* @param tableId
|
||||||
|
* @param tableName
|
||||||
|
*/
|
||||||
void delTbFileSource(Long tableId, String tableName);
|
void delTbFileSource(Long tableId, String tableName);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,10 @@ public interface TbOtherPeopleService {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
void updateTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo);
|
void updateTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo);
|
||||||
|
/**
|
||||||
|
* 其他人员删除
|
||||||
|
* @param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
void delTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo) throws Exception;
|
void delTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo) throws Exception;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,11 @@ public class TbFileSourceServiceImpl implements TbFileSourceService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除附件信息
|
||||||
|
* @param tableId
|
||||||
|
* @param tableName
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void delTbFileSource(Long tableId, String tableName) {
|
public void delTbFileSource(Long tableId, String tableName) {
|
||||||
tbFileSourceMapper.delTbFileSource(tableId,tableName);
|
tbFileSourceMapper.delTbFileSource(tableId,tableName);
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,11 @@ public class TbOtherPeopleServiceImpl implements TbOtherPeopleService {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 其他人员删除
|
||||||
|
* @param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
@Transactional
|
@Transactional
|
||||||
public void delTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo) throws Exception {
|
public void delTbOtherPeople(TbOtherPeopleVo tbOtherPeopleVo) throws Exception {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue