1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.panzhihua.common.api;
|
| /**
| * 攀枝花综治网格化-字段key
| *
| * @author manailin
| * @date 2021/06/16
| */
| public class DictionItemConstants {
|
| /**
| * 文化层度字典编码
| */
| public static final String LC_CULTURE_LEVEL = "1156457421221564414";
|
| private DictionItemConstants() {
| throw new IllegalStateException("Utility class");
| }
| }
|
|