mybatis-plus 自定sql 分页查询

DasInfoVolumesController 类

@AutoLog(value = "卷内表无原文-列表查询")
   @ApiOperation(value="卷内表无原文-列表查询", notes="卷内表无原文-列表查询")
   @GetMapping(value = "/queryNoAttachmentList")
   public Result<?> queryPgList(DasInfoVolumes dasInfoVolumes,
                                @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
                                @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
                                HttpServletRequest req) {
       Page<DasInfoVolumes> page = new Page<DasInfoVolumes>(pageNo, pageSize);
       IPage<DasInfoVolumes> pageList = dasInfoVolumesService.getNoAttachmentList(page, dasInfoVolumes);
       return Result.OK(pageList);
   }

IDasInfoVolumesService 类增加方法

public IPage<DasInfoVolumes> getNoAttachmentList(Page page,DasInfoVolumes dasInfoVolumes);

DasInfoVolumesServiceImpl 增加方法

   @Override
	public IPage<DasInfoVolumes> getNoAttachmentList(Page page, DasInfoVolumes dasInfoVolumes){
		return  dasInfoVolumesMapper.getNoAttachmentList(page,dasInfoVolumes);
	}

DasInfoVolumesMapper 增加方法

public IPage<DasInfoVolumes> getNoAttachmentList(Page page,@Param("dasInfoVolumes") DasInfoVolumes dasInfoVolumes);

DasInfoVolumesMapper.xml 增加方法

<select id="getNoAttachmentList" parameterType="org.jeecg.modules.das.archive.entity.DasInfoVolumes" resultType="org.jeecg.modules.das.archive.entity.DasInfoVolumes">
		SELECT *
		FROM  das_info_volumes
		WHERE del_flag=0 and
			 id not in (SELECT volume_id from das_info_vattachment)
		<if test="dasInfoVolumes.folderNo!=null and dasInfoVolumes.folderNo!=''">
			and folder_no = #{dasInfoVolumes.folderNo}
		</if>
		<if test="dasInfoVolumes.archiveNo!=null and dasInfoVolumes.archiveNo!=''">
			and archive_no = #{dasInfoVolumes.archiveNo}
		</if>
		<if test="dasInfoVolumes.maintitle!=null and dasInfoVolumes.maintitle!=''">
			and maintitle = #{dasInfoVolumes.maintitle}
		</if>

	</select>
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值