From cd9bd57600aeda42a7b06e015ea1e0b94dd37b75 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期一, 07 四月 2025 17:32:33 +0800 Subject: [PATCH] 虚拟卡余额小于100时提示用户余额不足 --- pipIrr-platform/pipIrr-mw/pipIrr-mwTest-server/src/main/java/com/dy/testServer/forRmi/MwTestClientStatus.java | 74 +++++++++++++++++++++++++++++++++++++ 1 files changed, 74 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-mw/pipIrr-mwTest-server/src/main/java/com/dy/testServer/forRmi/MwTestClientStatus.java b/pipIrr-platform/pipIrr-mw/pipIrr-mwTest-server/src/main/java/com/dy/testServer/forRmi/MwTestClientStatus.java new file mode 100644 index 0000000..bb4cd7d --- /dev/null +++ b/pipIrr-platform/pipIrr-mw/pipIrr-mwTest-server/src/main/java/com/dy/testServer/forRmi/MwTestClientStatus.java @@ -0,0 +1,74 @@ +package com.dy.testServer.forRmi; + +public class MwTestClientStatus { + + public MwConfigVo confVo ; + + public ResStartTcpConnectVo startVo ; + + public ResStartRtuReportVo reportVo ; + + public Integer count ;//mwTest涓婃姤鏁版嵁鏁伴噺 + + public Integer overCount ;//mwTest瀹屾垚鍏ㄩ儴涓婃姤鏁版嵁RTU鏁伴噺 + + public Boolean over ;//mwTest涓婃姤鏁版嵁缁撴潫 + + public Long seconds ;//mwTest涓婃姤鏁版嵁鐢ㄦ椂(绉�) + + public MwConfigVo getConfVo() { + return confVo; + } + + public void setConfVo(MwConfigVo confVo) { + this.confVo = confVo; + } + + public ResStartTcpConnectVo getStartVo() { + return startVo; + } + + public void setStartVo(ResStartTcpConnectVo startVo) { + this.startVo = startVo; + } + + public Integer getCount() { + return count; + } + + public void setCount(Integer count) { + this.count = count; + } + + public Boolean getOver() { + return over; + } + + public void setOver(Boolean over) { + this.over = over; + } + + public Long getSeconds() { + return seconds; + } + + public void setSeconds(Long seconds) { + this.seconds = seconds; + } + + public ResStartRtuReportVo getReportVo() { + return reportVo; + } + + public void setReportVo(ResStartRtuReportVo reportVo) { + this.reportVo = reportVo; + } + + public Integer getOverCount() { + return overCount; + } + + public void setOverCount(Integer overCount) { + this.overCount = overCount; + } +} -- Gitblit v1.8.0