| package com.dy.pipIrrGlobal.voRm; | 
|   | 
| import com.alibaba.fastjson2.annotation.JSONField; | 
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
| import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2024-08-23 8:43 | 
|  * @LastEditTime 2024-08-23 8:43 | 
|  * @Description 灌溉配置视图对象 | 
|  */ | 
|   | 
| @Data | 
| @JsonPropertyOrder({ "irrProId", "defaultValue", "unit"}) | 
| public class VoIrrigaterProfile { | 
|     private static final long serialVersionUID = 202408230844001L; | 
|   | 
|     /** | 
|      * 灌溉配置ID | 
|      */ | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     private Long irrProId; | 
|   | 
|     /** | 
|      * 配置默认值 | 
|      */ | 
|     private Integer defaultValue; | 
|   | 
|     /** | 
|      * 计量单位 | 
|      */ | 
|     private String unit; | 
| } |