From fdecbc710888e8f048f08ec16428f192b8251dfe Mon Sep 17 00:00:00 2001 From: Administrator <zhubaomin> Date: 星期一, 08 七月 2024 11:30:54 +0800 Subject: [PATCH] 2024-07-08 朱宝民 优化根据指定条件获取水卡列表接口 --- pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlParse.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlParse.java b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlParse.java index 5336505..6e5a7a9 100644 --- a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlParse.java +++ b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlParse.java @@ -34,7 +34,7 @@ DataStateVo avo = new DataStateVo() ; byte b = bs[index] ; avo.icCard = (byte)((b & 0x4) >> 2) ; - avo.working = (byte)((b & 0x10) >> 4) ; + avo.valveState = (byte)((b & 0x10) >> 4) ; avo.powerType = (byte)((b & 0x40) >> 6) ; return avo ; } -- Gitblit v1.8.0