You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
583 B

package com.stone.conf.enums;
import io.swagger.annotations.ApiModel;
import lombok.*;
/**
* @author zichen
*/
@NoArgsConstructor
@AllArgsConstructor
@ApiModel(value = "设备种类代码")
public enum EquipmentCodeEnum {
/*
* 错误信息
* */
GL("1000", "锅炉"),
YLRQ("2000", "压力容器"),
DT("3000", "电梯"),
QZJ("4000", "起重机"),
CC("5000", "厂车"),
YLGDYJ("7000", "压力管道原件"),
YLGD("8000", "压力管道");
@Getter @Setter
private String code;
@Getter @Setter
private String name;
}