12345678910111213141516171819202122232425262728 |
- package com.bizmatics.service.enums;
- /**
- * @author yq
- * @date 2021/7/12 9:13
- */
- public enum ObjectCode {
- BOX_TYPE("箱变"),
- POLE_TYPE("杆变"),
- EP_TYPE("配电");
- private final String name;
- ObjectCode(String name) {
- this.name = name;
- }
- public String getName(){
- return this.name;
- }
- }
|