From af6d33f7c16b121538a6cdd417728e03c4ad0ef1 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期四, 19 六月 2025 16:55:19 +0800 Subject: [PATCH] 准东数据推送 --- src/main/java/com/ruoyi/doublePrevention/entity/ZDReport/HandlerZDReportParam.java | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/ZDReport/HandlerZDReportParam.java b/src/main/java/com/ruoyi/doublePrevention/entity/ZDReport/HandlerZDReportParam.java new file mode 100644 index 0000000..b25dd8a --- /dev/null +++ b/src/main/java/com/ruoyi/doublePrevention/entity/ZDReport/HandlerZDReportParam.java @@ -0,0 +1,23 @@ +package com.ruoyi.doublePrevention.entity.ZDReport; + +import lombok.Data; + +import java.util.Date; + +@Data +public class HandlerZDReportParam { + /** + * 主键 + */ + private String id; + /** + * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传 + */ + private Byte zhunReportStatus; + /** + * 上报时间 + */ + private Date zhunReportTime; + + +} -- Gitblit v1.9.2