mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.panzhihua.common.enums;
 
/**
 * @ClasssName 事件常量
 * @Description TODO
 * @Author cedoo
 * @Date 2021/5/28
 * @Version 1.0
 **/
public class EventType {
    // 当event_type_category是1填写事件分类
    // 1治安隐患、2公共服务、3矛盾纠纷、4不稳定因素、5突发事件、6特殊人群信息上报 7 宣传教育
    public static Integer EMERGENCIES = 5; // 5 突发事件
    public static Integer CONTRADICTION = 3; // 3 矛盾纠纷
    public static Integer HAZARD = 1; // 1 治安隐患
    public static Integer UNSTABLE = 4; // 4 不稳定因素
    public static Integer PUBLIC = 2; // 2 公共服务
    public static Integer PROPAGANDA = 7; // 7 宣传教育
    public static Integer SPECIAL = 6; // 6 特殊人群信息上报
}