广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
34
35
36
37
38
package cn.huge.module.grid.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class GridCaseDataVo {
    private String gridCode;
    /**
     * 渠道来源
     */
    private String infoSource;
    /**
     * 业务来源
     */
    private String businessSource;
    private String startReportTime;
    private String endReportTime;
 
    /**
     * 机构id    8a437292679805130167e3d5a1a70760
     */
    private String currentOrgId;
 
    private String entryItemCode;
 
    private int page;
    /**
     * 页数大小,传300
     */
    private int pageSize;
    /**
     * 是否返回总数,传true
     */
    private boolean searchCountFlag;
}