1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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; 
 |    
 |  } 
 |  
  |