enum DeviceStatus { OFFLONE(0, "离线"), //离线 ONLINE(1, "在线"); //在线 // 枚举的值 final int code; // 整数值 final String description; // 字符串描述 // 构造函数 const DeviceStatus(this.code, this.description); }