refactor(perf): 将ID字段从String类型改为Long类型
- 修改所有实体类中的ID字段类型从String改为Long - 更新所有服务接口和实现类的方法参数类型 - 调整控制器中的路径变量类型以匹配新的ID类型 - 修正查询条件判断逻辑,从字符串非空检查改为数值非空检查 - 更新数据传输对象中的ID字段类型保持一致性
This commit is contained in:
@@ -20,7 +20,7 @@ public interface IPerfTemplateDimensionService {
|
||||
/**
|
||||
* 查询考核维度明细
|
||||
*/
|
||||
PerfTemplateDimensionVo queryById(String id);
|
||||
PerfTemplateDimensionVo queryById(Long id);
|
||||
|
||||
/**
|
||||
* 查询考核维度明细列表
|
||||
@@ -45,5 +45,5 @@ public interface IPerfTemplateDimensionService {
|
||||
/**
|
||||
* 校验并批量删除考核维度明细信息
|
||||
*/
|
||||
Boolean deleteWithValidByIds(Collection<String> ids, Boolean isValid);
|
||||
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user