md
This commit is contained in:
parent
af5c27455d
commit
8d8b1d6913
@ -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);
|
||||
}
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user