package com.fzzy.igds.data;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class IgdsBaseParam {
|
|
private String id;
|
|
private String companyId;
|
|
private String deptId;
|
|
private String name;
|
|
private String depotId;
|
|
private String key;//自定义关键字
|
|
@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 int limit = 10;// LAYUI 专用,每页显示的条数。laypage将会借助 count 和 limit 计算出分页数
|
|
private int curr = 1;// LAYUI 专用 起始页。一般用于刷新类型的跳页以及HASH跳页
|
|
private int page = 1;// 目标页面
|
|
}
|