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 9:05
|
* @LastEditTime :2024/5/21 9:05
|
* @Description
|
*/
|
@Data
|
@Schema(name = "灌溉单元视图(查一个)")
|
public class VoUnitOne implements BaseEntity {
|
@Schema(description = "所属项目名称")
|
public String projectName;
|
|
@Schema(description = "轮灌组编码")
|
private String groupCode;
|
|
@Schema(description = "灌溉单元ID")
|
private String id;
|
|
@Schema(description = "灌溉面积")
|
private Double area;
|
|
@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;
|
|
@Schema(description = "取水口Id")
|
public String intakeId;
|
|
@Schema(description = "取水口名称")
|
public String intakeName;
|
}
|