洪城义警-正式版后台
zhongrj
2022-12-02 68f995f74d14690b4916a967f05ea3d77dfabd6b
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;
    }
}