refactor(db): 重构企业单位类型枚举
- 将枚举常量名称从大写字母改为小写字母 - 移除了多余的空格 - 优化了代码格式,提高了可读性
This commit is contained in:
parent
b3f0227b40
commit
b27a42611a
|
@ -17,24 +17,24 @@ import java.util.stream.Collectors;
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public enum EnterprisesUnitType implements BaseEnum<String>, IEnum<String> {
|
public enum EnterprisesUnitType implements BaseEnum<String>, IEnum<String> {
|
||||||
|
|
||||||
PARTY_GOVERNMENT("party_government", "党政机关 "),
|
party_government("party_government", "党政机关 "),
|
||||||
MEDICAL("medical", "医疗机构"),
|
medical("medical", "医疗机构"),
|
||||||
RESIDENTIAL("residential", "小区"),
|
residential("residential", "小区"),
|
||||||
HIGHER_LEARNING("higher_learning", "高等院校"),
|
higher_learning("higher_learning", "高等院校"),
|
||||||
PRIMARY_AND_SECONDARY("primary_and_secondary", "中小学幼儿园"),
|
primary_and_secondary("primary_and_secondary", "中小学幼儿园"),
|
||||||
SHOPPING_SUPERMARKETS("shopping_supermarkets", "商场超市"),
|
shopping_supermarkets("shopping_supermarkets", "商场超市"),
|
||||||
FINANCIAL("financial", "金融机构"),
|
financial("financial", "金融机构"),
|
||||||
HYDROPOWER("hydropower", "水电油气"),
|
hydropower("hydropower", "水电油气"),
|
||||||
KEY_PROJECTS("key_projects", "重点工程建设单位"),
|
key_projects("key_projects", "重点工程建设单位"),
|
||||||
DELIVERY_LOGISTICS("delivery_logistics", "寄递物流"),
|
delivery_logistics("delivery_logistics", "寄递物流"),
|
||||||
MILITARY("military", "军工、科研单位"),
|
military("military", "军工、科研单位"),
|
||||||
WEN_BO("wen_bo", "文博单位"),
|
wen_bo("wen_bo", "文博单位"),
|
||||||
IMPORTANT_NEWS("important_news ", "重要新闻单位"),
|
important_news("important_news ", "重要新闻单位"),
|
||||||
LARGE_SCALE_MATERIAL("large_scale_material ", "大型物资储备"),
|
large_scale_material("large_scale_material ", "大型物资储备"),
|
||||||
TRANSPORTATION("transportation", "交通运输企业"),
|
transportation("transportation", "交通运输企业"),
|
||||||
INDUSTRIAL_PARK("industrial_park", "工业园区企业"),
|
industrial_park("industrial_park", "工业园区企业"),
|
||||||
COMPLEX_PUBLIC_SECURITY("complex_public_security", "治安复杂场所"),
|
complex_public_security("complex_public_security", "治安复杂场所"),
|
||||||
MAKING_EXPLOSIVE_EASILY("making_explosive_easily ", "易制爆"),
|
making_explosive_easily("making_explosive_easily ", "易制爆"),
|
||||||
hazardous_materials("hazardous_materials ", "危化物品存放场所"),
|
hazardous_materials("hazardous_materials ", "危化物品存放场所"),
|
||||||
other("other", "其他单位");
|
other("other", "其他单位");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue