/**
* redis服務
*/
@Autowired
private RedisService redisService;
//創建 Device 對象
Device no = new Device();
//設置屬性
no.setDeviceNo("Ubibot1");
no.setCompanyId(10);
no.setGroupId(1);
// 創建異常設備集合
List<Device> deviceError = new ArrayList<Device>();
//在集合中放入no 對象
deviceError.add(no);
//如果集合有值
if(deviceError.size() > 0) {
// 異常設備的json數組,把list轉換成json數組
JSONArray jsonArray = JSONObject.parseArray(JSON.toJSONString(deviceError));
//把json數組轉換成String類型
String json = jsonArray.toJSONString();
// 將錯誤裝置JSON數組放入redis中
redisService.set(RedisKey.CULTIVATION_RECORD_ERROR, json);
}
