This commit is contained in:
linfso 2024-06-06 14:52:13 +08:00
parent af5c27455d
commit 8d8b1d6913
3 changed files with 6 additions and 6 deletions

View File

@ -58,7 +58,7 @@ public interface EmisProblemTypeMapper extends BaseMapper<EmisProblemType>
* @param id 主键
* @return 结果
*/
public int deleteEmisProblemTypeById(Long id);
public int deleteEmisProblemTypeById(Integer id);
/**
* 批量删除
@ -66,5 +66,5 @@ public interface EmisProblemTypeMapper extends BaseMapper<EmisProblemType>
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteEmisProblemTypeByIds(Long[] ids);
public int deleteEmisProblemTypeByIds(Integer[] ids);
}

View File

@ -57,7 +57,7 @@ public interface IEmisProblemTypeService
* @param ids 需要删除的问题件类型主键集合
* @return 结果
*/
public int deleteEmisProblemTypeByIds(Long[] ids);
public int deleteEmisProblemTypeByIds(Integer[] ids);
/**
* 删除问题件类型信息
@ -65,5 +65,5 @@ public interface IEmisProblemTypeService
* @param id 问题件类型主键
* @return 结果
*/
public int deleteEmisProblemTypeById(Long id);
public int deleteEmisProblemTypeById(Integer id);
}

View File

@ -84,7 +84,7 @@ public class EmisProblemTypeServiceImpl implements IEmisProblemTypeService
* @return 结果
*/
@Override
public int deleteEmisProblemTypeByIds(Long[] ids)
public int deleteEmisProblemTypeByIds(Integer[] ids)
{
return emisProblemTypeMapper.deleteEmisProblemTypeByIds(ids);
}
@ -96,7 +96,7 @@ public class EmisProblemTypeServiceImpl implements IEmisProblemTypeService
* @return 结果
*/
@Override
public int deleteEmisProblemTypeById(Long id)
public int deleteEmisProblemTypeById(Integer id)
{
return emisProblemTypeMapper.deleteEmisProblemTypeById(id);
}