洪城义警-正式版后台
tangzy
2022-02-25 0a4fbcd9d997005bda2b5ac5dc9daa586342d7db
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;
    }
}