1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package cn.flightfeather.supervision.domain.enumeration
|
| enum class UserType(val value: Int, val des: String) {
| NoType(-1, "无类型"),
| Admin(0, "管理员"),
| Insider(1, "内部人员"),
| Gov(2, "政府部门"),
| Enterprise(3, "企业")
| }
|
| enum class SubUserType(val value: Int, val des: String) {
| Province(20, "省级政府"),
| City(21, "市级政府"),
| District(22, "区级政府"),
| Town(23, "镇级政府"),
| Area(24, "集中区"),
| Pollutant(30, "排污企业"),
| }
|
|