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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.dy.pipIrrGlobal.pojoMd;
 
/**
 * @Author: liurunyu
 * @Date: 2025/8/6 10:51
 * @Description
 */
public class MdParam {
    /**
    * 主键
    */
    private Long id;
 
    private Long cropsId;
 
    /**
    * 参数名称
    */
    private String name;
 
    /**
    * 参数值
    */
    private Double value;
 
    /**
    * 参数含义
    */
    private String sense;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getCropsId() {
        return cropsId;
    }
 
    public void setCropsId(Long cropsId) {
        this.cropsId = cropsId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
 
    public String getSense() {
        return sense;
    }
 
    public void setSense(String sense) {
        this.sense = sense;
    }
}