Commit 70aaec19 by 阳浪

我的留言

parent 93c6b93f
......@@ -22,10 +22,10 @@ public class LeaveWordParamVo {
private Long createById;
@ApiModelProperty("当前页数")
public Integer pageNo;
public Integer pageNo = 1;
@ApiModelProperty("页内条数")
public Integer pageSize;
public Integer pageSize = 10;
@ApiModelProperty(value = "业务类型:1-功能异常、2-体验问题、3-产品建议、4-其他")
private Integer bizType;
......
......@@ -32,7 +32,7 @@
inner join cloud_system.authz_account_role aar on
arug.role_id = aar.role_id
where
aar.id in
aug.id in
<foreach item="item" index="index" collection="groupIds" open="(" separator="," close=")">
#{item}
</foreach>
......
......@@ -60,7 +60,6 @@ public class LeaveWordServiceImpl extends ServiceImpl<LeaveWordMapper, LeaveWord
if(ObjectUtil.isNotEmpty(paramVo.getState())){
map.eq("state", paramVo.getState());
}
map.eq("deleted", 0);
paramPage = selectPage(paramPage,map);
if(paramPage!=null){
page.setSize(paramPage.getSize());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment