From 6849ec1281a1a45639d6d28eef771eac63e389d2 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期三, 11 六月 2025 16:32:44 +0800 Subject: [PATCH] 1、表阀一体协议,关阀失败数据解析修改; 2、RTU状态处理逻辑修改,每条81上报数据都要保存。 --- pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/issue/dto/DtoReportReply.java | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/issue/dto/DtoReportReply.java b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/issue/dto/DtoReportReply.java new file mode 100644 index 0000000..4adf5ca --- /dev/null +++ b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/issue/dto/DtoReportReply.java @@ -0,0 +1,35 @@ +package com.dy.pipIrrWechat.issue.dto; + +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import lombok.Data; + +/** + * @author ZhuBaoMin + * @date 2024-10-31 15:18 + * @LastEditTime 2024-10-31 15:18 + * @Description 鍐滄埛闂涓婃姤鍥炲浼犺緭绫� + */ + +@Data +public class DtoReportReply { + public static final long serialVersionUID = 202410311519001L; + + /** + * 闂涓婃姤ID + */ + @NotNull(message = "蹇呴』閫夋嫨涓�涓棶棰樹笂鎶�") + private Long reportId; + + /** + * 绛斿鍐呭 + */ + @NotBlank(message = "绛斿鍐呭涓嶈兘涓虹┖") + private String replyContent; + + /** + * 绛斿浜篒D + */ + @NotNull(message = "绛斿浜轰笉鑳戒负绌�") + private Long replierId; +} -- Gitblit v1.8.0