青羊经侦大队-数据平台
wl
2022-08-08 d60406e8f251a7c8343825403f5fd71de1680975
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.example.jz.modle.vo;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(description = "案件群公告",value = "AnnouncementVo")
public class AnnouncementVo {
 
    /**
     * 公告内容
     */
    private String text;
    /**
     * 群id
     */
    private Integer groupId;
    /**
     * 公告id
     */
    private Integer id;
    /**
     * 创建时间
     */
    private Date ctime;
 
    //公告有效开始时间
    private Date effectiveStime;
 
    //公共有效结束时间
    private Date effectiveEtime;
 
    //创建人
    private String createName;
 
    //状态
    private Integer status;
 
    //发布时间
    private Date publishTime;
}