From f74db84df0e3797e0a2db1faa50adcb778a5150a Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期五, 27 六月 2025 11:33:35 +0800 Subject: [PATCH] 1、完善水肥、墒情、气象相关Mapper代码; 2、解决表阀一体机远程关阀出现的订单号不一致专制不能关阀问题(王江海测试发现)。 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voAllRound/VoArIntakeAmountDay.java | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voAllRound/VoArIntakeAmountDay.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voAllRound/VoArIntakeAmountDay.java new file mode 100644 index 0000000..7673666 --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voAllRound/VoArIntakeAmountDay.java @@ -0,0 +1,48 @@ +package com.dy.pipIrrGlobal.voAllRound; + +import com.alibaba.fastjson2.annotation.JSONField; +import com.alibaba.fastjson2.writer.ObjectWriterImplToString; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; +import lombok.Data; + +import java.util.Date; + +/** + * @Author: liurunyu + * @Date: 2025/2/5 10:14 + * @Description + */ +@Data +@JsonPropertyOrder({ "intakeId", "dt", "amount", "money", "times" }) +public class VoArIntakeAmountDay { + public static final long serialVersionUID = 202502051005003L; + + /** + * 鍙栨按鍙D + */ + @JSONField(serializeUsing= ObjectWriterImplToString.class) + public Long intakeId; + + /** + * 鏃ユ湡 + */ + @JsonFormat(pattern = "yyyy-MM-dd") + public Date dt ; + + /** + * 鐢ㄦ按閲� + */ + public Double amount ; + + /** + * 鐢ㄦ按娑堣垂閲戦 + */ + public Double money ; + + /** + * 鐢ㄦ按娆℃暟 + */ + public Integer times ; + +} -- Gitblit v1.8.0