1078-设置终端参数-添加接口

This commit is contained in:
648540858
2024-04-29 23:06:15 +08:00
parent 5a392372cb
commit 5b489d7c26
5 changed files with 56 additions and 2 deletions

View File

@@ -98,7 +98,6 @@ public class J8103 extends Rs {
}catch (Exception e) {
log.error("[设置终端参数 ] 编码失败", e );
}
}
}
System.out.println(ByteBufUtil.hexDump(buffer));

View File

@@ -0,0 +1,19 @@
package com.genersoft.iot.vmp.jt1078.proc.response;
import com.genersoft.iot.vmp.jt1078.annotation.MsgId;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
/**
* 查询终端属性
*/
@MsgId(id = "8107")
public class J8107 extends Rs {
@Override
public ByteBuf encode() {
ByteBuf buffer = Unpooled.buffer();
return buffer;
}
}