洪城义警-正式版后台
zengh
2021-08-10 a2fb06f8f5f685d753780b3d5befc5417f15af3a
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;
    }
}