自动化立体仓库 - WMS系统
#
lty
1 天以前 22e19afee228c3ecbb41ac8115163063f572e51f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.api.controller.params;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
@Data
@Accessors(chain = true)
@ApiModel("分页请求参数")
public class PageRequestParams {
 
    private Integer curr = 1;
 
    private Integer limit = 50;
 
}