修改运营方案列表pageNumber

This commit is contained in:
shuo.wang
2024-05-08 11:42:04 +08:00
parent 5edec66ab1
commit 78e59e435c
2 changed files with 6 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ import java.util.List;
* @注释:
*/
@Data
public class PlanListRequest extends PageBasicInfo {
public class PlanListRequest {
@ApiModelProperty("店铺名称")
private String shopName;
@ApiModelProperty("起始日期")
@@ -26,5 +26,9 @@ public class PlanListRequest extends PageBasicInfo {
private List<String> regionIds;
@ApiModelProperty("审核状态")
private Integer resultType;
@ApiModelProperty ("页码")
private Integer pageNumber;
@ApiModelProperty ("分页大小")
private Integer pageSize;
}

View File

@@ -133,7 +133,7 @@ public class OpeningOperationPlanImpl implements OpeningOperationPlanService {
@Override
public PageInfo<OpeningOperationPlanListVO> getPlanListPage(PlanListRequest request) {
log.info("getPlanListPage request:{}", JSONObject.toJSONString(request));
PageHelper.startPage(request.getPageNum(), request.getPageSize());
PageHelper.startPage(request.getPageNumber(), request.getPageSize());
//去shop_info表查询店铺名字店铺code开店负责人id督导id区域idlineinfo 加盟商name手机号招商经理id,open_plan,提交时间,审核状态
//TODO 拆表 产品沟通限定时间
List<OpenPlanShopInfoDTO> openPlanShopInfoDTOS = openingOperationPlanDAO.getOpenPlanShopListByCondition(request);