shiyunteng
1 天以前 8de09297dcc5393cc8542f29318b17f5696d4f8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
}