zhubaomin
2025-04-09 80e22bcc7af8aebed7443965655542fbe4966708
pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigatePlan/dto/IrrigateSchedule.java
New file
@@ -0,0 +1,33 @@
package com.dy.pipIrrWechat.irrigatePlan.dto;
import lombok.Data;
import java.util.Date;
/**
 * @author ZhuBaoMin
 * @date 2025-02-20 15:17
 * @LastEditTime 2025-02-20 15:17
 * @Description 灌溉次序对象表
 */
@Data
public class IrrigateSchedule {
    public static final long serialVersionUID = 202502201519001L;
    /**
     * 轮灌组ID
     */
    private Long groupId;
    /**
     * 灌溉开始时间
     */
    private Date startTime;
    /**
     * 该轮灌组灌溉时长
     */
    private Integer duration;
}