Lius
2024-05-11 8464895b3474ed5dfc7d8ad9fa30a730bcb04000
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
package org.jeecg.modules.eam.model;
 
import lombok.Data;
 
import java.util.Date;
 
@Data
public class ParameterVo {
 
    private String workPlanId;
 
    private String parameterId;
 
    private String parameterCode;
 
    private String parameterName;
 
    private float upperLimitValue;
 
    private float lowerLimitValue;
 
    private float actualValue;
 
    private String parameterCondition;
 
    private String saveTableName;
 
    private Date collectTime;
 
}