|
|
|
@ -3,7 +3,8 @@ package com.glxp.api.controller.anno;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.github.pagehelper.Page;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.api.annotation.Log;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
@ -12,6 +13,7 @@ import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
import com.glxp.api.controller.BaseController;
|
|
|
|
|
import com.glxp.api.entity.stat.AnncmntManuCertEntity;
|
|
|
|
|
import com.glxp.api.entity.stat.AnncmntManuEntity;
|
|
|
|
|
import com.glxp.api.entity.stat.AnncmntProductBatchEntity;
|
|
|
|
|
import com.glxp.api.req.anno.AnncmntManuCertEntityRequest;
|
|
|
|
|
import com.glxp.api.req.anno.AnncmntProductBatchEntityRequest;
|
|
|
|
@ -29,6 +31,7 @@ import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户信息
|
|
|
|
@ -49,11 +52,12 @@ public class AnncmntProductBatchController extends BaseController {
|
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
|
|
|
|
|
}
|
|
|
|
|
IPage page = new Page(request.getPage(),request.getLimit());
|
|
|
|
|
IPage<AnncmntProductBatchEntity> pages = anncmntProductBatchService.page(page, getQueryWrapper(request));
|
|
|
|
|
int offset = (request.getPage() - 1) * request.getLimit();
|
|
|
|
|
Page<AnncmntProductBatchEntity> pages = PageHelper.offsetPage(offset, request.getLimit());
|
|
|
|
|
List<AnncmntProductBatchEntity> list = anncmntProductBatchService.list(getQueryWrapper(request));
|
|
|
|
|
PageSimpleResponse<AnncmntProductBatchEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pages.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(pages.getRecords());
|
|
|
|
|
pageSimpleResponse.setList(list);
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|