Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
张雷
/
skboot-zhongye
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
构建
提交
问题看板
文件
提交
网络
比较
分支
标签
facbde96
由
康伟
编写于
2024-11-20 13:34:50 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
kangwei:
法律法规模块、标准规范模块修改-后端
1 个父辈
ea60ab98
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
7 行增加
和
4 行删除
sk-module-biz/src/main/java/com/skua/modules/material/controller/MaterialInfoController.java
sk-module-biz/src/main/java/com/skua/modules/material/controller/MaterialInfoController.java
查看文件 @
facbde9
...
...
@@ -69,20 +69,20 @@ public class MaterialInfoController {
* @param pageSize
* @return
*/
@AutoLog
(
value
=
"厂区资料管理-分页列表查询"
)
/*
@AutoLog(value = "厂区资料管理-分页列表查询")
@ApiOperation(value = "厂区资料管理-分页列表查询", notes = "厂区资料管理-分页列表查询")
@GetMapping(value = "/list")
public Result<IPage<MaterialInfo>> queryPageList(MaterialInfo materialInfo,
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) {
/* String departIds = null;
*/
/* String departIds = null;
if (StringUtils.isBlank(materialInfo.getDepartId())&&StringUtils.isNotBlank(BaseContextHandler.getDeparts())) {
departIds = departService.getChildDepartId(BaseContextHandler.getDeparts());
}else{
departIds = departService.getChildDepartId(materialInfo.getDepartId());
}
IPage<MaterialInfo> pageList = materialInfoService.getList(page, materialInfo, departIds);
*/
*/
/*
Result<IPage<MaterialInfo>> result = new Result<IPage<MaterialInfo>>();
Page<MaterialInfo> page = new Page<MaterialInfo>(pageNo, pageSize);
QueryWrapper<MaterialInfo> queryWrapper = getMaterialInfoQueryWrapper(materialInfo);
...
...
@@ -91,7 +91,7 @@ public class MaterialInfoController {
result.setSuccess(true);
result.setResult(pageList);
return result;
}
}
*/
@AutoLog
(
value
=
"厂区资料管理-法律法规分页列表"
)
@ApiOperation
(
value
=
"厂区资料管理-法律法规分页列表"
,
notes
=
"厂区资料管理-法律法规分页列表"
)
...
...
@@ -103,6 +103,9 @@ public class MaterialInfoController {
Page
<
MaterialInfo
>
page
=
new
Page
<
MaterialInfo
>(
pageNo
,
pageSize
);
QueryWrapper
<
MaterialInfo
>
queryWrapper
=
new
QueryWrapper
();
queryWrapper
.
eq
(
"del_flag"
,
"0"
);
if
(
StringUtils
.
isNotEmpty
(
materialInfo
.
getFacInformationtype
())){
queryWrapper
.
eq
(
"fac_informationtype"
,
materialInfo
.
getFacInformationtype
());
}
if
(
StringUtils
.
isNotEmpty
(
materialInfo
.
getFacInformationName
())){
queryWrapper
.
like
(
"fac_information_name"
,
materialInfo
.
getFacInformationName
());
}
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论