package com.ld.igds.data;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
/**
|
* @author: andy.jia
|
* @description:
|
* @date:2019.03.21
|
**/
|
@Data
|
public class BaseParam {
|
|
private int limit = 10;// LAYUI 专用,每页显示的条数。laypage将会借助 count 和 limit 计算出分页数
|
|
private int curr = 1;// LAYUI 专用 起始页。一般用于刷新类型的跳页以及HASH跳页
|
|
private int page = 1;// 目标页面
|
|
public int getPage() {
|
return page;
|
}
|
|
public void setPage(int page) {
|
this.page = page;
|
}
|
|
private String companyId;// 组织编码
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
private Date start;
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
private Date end;
|
|
private String depotId;// 仓库编码
|
|
private String deptId;// 库区编码
|
|
private String key;//关键字
|
}
|