package com.fzzy.igds.data;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
|
|
@Data
|
public class QuantityParam {
|
|
private String companyId;
|
|
private String deptId;
|
|
private String title; // 报表标题
|
|
|
private String depotId;// 仓库编码
|
|
@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 createUser; // 创建人
|
|
private String timeDesc; // 时间描述
|
}
|