package com.by4cloud.platformx.business.dto;
|
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
public class HomeQueryDTO {
|
|
private Long queryCompId;
|
|
/**
|
* 1 本日 2 本月 3 本年
|
*/
|
private String queryType;
|
|
/**
|
* 1 东北 2 华北 3 华东 4 中南 5 西南 6 西北
|
*/
|
private String queryArea;
|
|
/**
|
* 1 内销 2 海外 3 外销
|
*/
|
private String queryServiceAttr;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date startTime;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date endTime;
|
}
|