zhubaomin
2025-04-09 a7485c9f9b16ece4f12f0b3f6d6a8c90370f5ae4
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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;
}