package com.dy.pipIrrGlobal.voIr; 
 | 
  
 | 
import com.dy.common.po.BaseEntity; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * @author :WuZeYu 
 | 
 * @Date :2024/5/27  10:34 
 | 
 * @LastEditTime :2024/5/27  10:34 
 | 
 * @Description 
 | 
 */ 
 | 
@Data 
 | 
@Schema(name = "作物灌溉制度视图") 
 | 
public class VoScheduling implements BaseEntity { 
 | 
  
 | 
    @Schema(description = "灌溉制度实体id") 
 | 
    private String id; 
 | 
  
 | 
    @Schema(description = "作物名称") 
 | 
    private String cropName; 
 | 
  
 | 
    @Schema(description = "作物生长期") 
 | 
    private String growthPeriod; 
 | 
  
 | 
    @Schema(description = "灌水周期") 
 | 
    private int irrigateCycle; 
 | 
  
 | 
    @Schema(description = "灌水延续时间") 
 | 
    private int duration; 
 | 
  
 | 
    @Schema(description = "备注") 
 | 
    private String remarks; 
 | 
} 
 |