leutu
2024-06-03 3ef35e6cd16bbfa206b26bb3271eac40ad020bcb
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
package com.fastbee.iot.model.ThingsModelItem;
 
import java.math.BigDecimal;
 
public class DecimalModelOutput extends ThingsModelItemBase
{
    private BigDecimal min;
    private BigDecimal max;
    private BigDecimal step;
    private String unit;
 
    public BigDecimal getMin() {
        return min;
    }
 
    public void setMin(BigDecimal min) {
        this.min = min;
    }
 
    public BigDecimal getMax() {
        return max;
    }
 
    public void setMax(BigDecimal max) {
        this.max = max;
    }
 
    public BigDecimal getStep() {
        return step;
    }
 
    public void setStep(BigDecimal step) {
        this.step = step;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
}