zhubaomin
2025-04-14 4a2deb11b819dd78a8c75e244ef67ec2e48cf5f5
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
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;
}