| package com.dy.pipIrrGlobal.voMd; | 
|   | 
| import com.alibaba.fastjson2.annotation.JSONField; | 
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
| import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import jakarta.validation.constraints.NotEmpty; | 
| import lombok.Data; | 
| import org.hibernate.validator.constraints.Length; | 
|   | 
| import java.io.Serializable; | 
|   | 
| /** | 
|  * @Author: liurunyu | 
|  * @Date: 2025/8/6 11:41 | 
|  * @Description | 
|  */ | 
|   | 
| @Data | 
| @JsonPropertyOrder({"id", "name", "value", "sense"}) | 
| public class VoParam implements Serializable { | 
|   | 
|     public static final long serialVersionUID = 202508061141001L; | 
|   | 
|     /** | 
|      * 主键 | 
|      */ | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     public Long id; | 
|   | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     public Long cropsId; | 
|   | 
|     /** | 
|      * 参数名称 | 
|      */ | 
|     public String name; | 
|   | 
|     /** | 
|      * 参数值 | 
|      */ | 
|     public Double value; | 
|   | 
|     /** | 
|      * 参数含义 | 
|      */ | 
|     public String sense; | 
|   | 
| } |