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;
|
}
|
}
|