package com.dy.pipIrrGlobal.voIr; 
 | 
  
 | 
import com.dy.common.po.BaseEntity; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * @author :WuZeYu 
 | 
 * @Date :2024/5/21  16:34 
 | 
 * @LastEditTime :2024/5/21  16:34 
 | 
 * @Description 
 | 
 */ 
 | 
@Data 
 | 
@Schema(name = "轮灌组视图(查一个)") 
 | 
public class VoGroupOne  implements BaseEntity { 
 | 
    @Schema(description = "所属项目名称") 
 | 
    public String projectName; 
 | 
  
 | 
    @Schema(description = "轮灌组编码") 
 | 
    private String groupCode; 
 | 
  
 | 
    @Schema(description = "灌溉单元数量") 
 | 
    private Integer itemCount; 
 | 
  
 | 
    @Schema(description = "轮灌组ID") 
 | 
    private String id; 
 | 
  
 | 
  
 | 
    @Schema(description = "备注") 
 | 
    private String remarks; 
 | 
  
 | 
    @Schema(description = "所属项目Id") 
 | 
    public String projectId; 
 | 
  
 | 
    /** 
 | 
     * 操作人名字 
 | 
     */ 
 | 
    @Schema(description = "操作人名字") 
 | 
    private String operatorName; 
 | 
  
 | 
    @Schema(description = "操作人Id") 
 | 
    private String operator; 
 | 
  
 | 
    /** 
 | 
     * 操作时间 
 | 
     */ 
 | 
    @Schema(description = "操作时间") 
 | 
    private Date operateDt; 
 | 
} 
 |