青羊经侦大队-数据平台
wl
2022-07-15 1de3b3fe57cd58e76c90fb33d4cdedc67c246a58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.example.jz.modle.vo;
 
import com.example.jz.modle.entity.Report;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(description = "报案人员首页",value = "ReportListVo")
public class ReportListVo extends Report {
    //是否进群
    private Integer isIntoGroup;
 
    //群id
    private Integer groupId;
}