From 9168aba8b1a368994858829723bb8a6e6f80cc78 Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期五, 30 八月 2024 19:58:27 +0800
Subject: [PATCH] 2024-08-30 朱宝民 开卡时根据实际情况(开卡、补卡)设置操作类型,获取片区接口修正无记录清空返回值

---
 pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlCreate.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlCreate.java b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlCreate.java
index a47ac4c..d2caefe 100644
--- a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlCreate.java
+++ b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/global/GlCreate.java
@@ -28,6 +28,10 @@
         ByteUtil.string2BCD_LE(bs, DateTime.yyMMddhhmmss(), index) ;
     }
 
+    public static void createTp(String yyMMddhhmmss, byte[] bs, int index) throws Exception {
+        ByteUtil.string2BCD_LE(bs, yyMMddhhmmss, index) ;
+    }
+
     public static void createLen(byte[] bsNoTail) throws Exception {
         int len = bsNoTail.length - ProtocolConstantV206V1_0_0.lenHead2ctrl;
         bsNoTail[ProtocolConstantV206V1_0_0.dataLenIndex] = (byte)len ;

--
Gitblit v1.8.0