|
|
|
@ -119,9 +119,6 @@ public class SystemintroController {
|
|
|
|
|
return R.ok().put("data", systemintro); // 返回一个包含查询结果的响应对象,并附带成功消息
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 后端保存
|
|
|
|
|
*/
|
|
|
|
@ -144,7 +141,6 @@ public class SystemintroController {
|
|
|
|
|
return R.ok(); // 返回一个包含成功信息的 R 对象
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改
|
|
|
|
|
*/
|
|
|
|
@ -156,8 +152,6 @@ public class SystemintroController {
|
|
|
|
|
return R.ok(); // 返回一个包含成功信息的 R 对象
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除
|
|
|
|
|
*/
|
|
|
|
@ -205,7 +199,6 @@ public class SystemintroController {
|
|
|
|
|
wrapper.le(columnName, map.get("remindend")); // 设置查询条件,查询 columnName 字段小于等于 "remindend" 键对应的值
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int count = systemintroService.selectCount(wrapper); // 调用服务层的方法,根据查询条件查询符合条件的记录数,并赋值给 count
|
|
|
|
|
return R.ok().put("count", count); // 返回一个包含查询结果的响应对象,其中包含键 "count" 和对应的 count 值
|
|
|
|
|
}
|
|
|
|
|