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/27 13:59 * @LastEditTime :2024/5/27 13:59 * @Description */ @Data @Schema(name = "作物灌溉制度视图") public class VoSchedulingOne implements BaseEntity { @Schema(description = "灌溉制度实体id") private String id; @Schema(description = "作物id") private String cropId; @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; @Schema(description = "操作人ID") private String operator; @Schema(description = "操作人名字") private String operatorName; @Schema(description = "操作时间") private Date operateDt; }