南昌市物联网技防平台-公安版
Administrator
2021-06-19 d1757c919b264de219decf4e8c9be0bf49cd926e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.springblade.common.entity;
 
import lombok.Data;
 
@Data
public class ReportReturnData {
    private String type;
    private Integer count;
 
    public ReportReturnData(String type, Integer count) {
        this.type = type;
        this.count = count;
    }
}