修改运营方案列表pageNumber
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -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,区域id,lineinfo 加盟商name,手机号,招商经理id,open_plan,提交时间,审核状态
|
||||
//TODO 拆表 产品沟通限定时间
|
||||
List<OpenPlanShopInfoDTO> openPlanShopInfoDTOS = openingOperationPlanDAO.getOpenPlanShopListByCondition(request);
|
||||
|
||||
Reference in New Issue
Block a user