package com.sandu.ximon.dao.enums; /** * 下发状态响应枚举类 * * @author chenjiantian */ public enum DeviceRespStatusEnums { /** * SUCCESS */ SUCCESS(0), /** * CRC_ERROR */ CRC_ERROR(1), /** * LENGTH_ERROR */ LENGTH_ERROR(2), /** * FLASH_ERROR */ FLASH_ERROR(3), /** * OTHER_ERROR */ OTHER_ERROR(255), ; private final Integer code; DeviceRespStatusEnums(Integer code) { this.code = code; } public Integer getCode() { return code; } }