干燥机配套车间生产管理系统/云平台服务端
zhuguifei
2024-12-11 5dd889b470543bed7564054cdfcd750b1d9316cb
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
44
45
46
47
48
49
50
51
52
53
54
55
package org.jeecg.modules.dry.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
 
@Data
@XmlRootElement(name = "WaterParam")
@XmlAccessorType(XmlAccessType.FIELD)
public class WaterParam {
    /**投料量(筐)*/
    @XmlElement(name = "weight1")
    @ApiModelProperty(value = "投料量(筐)")
    private Double weight1;
    /**初始重量*/
    @XmlElement(name = "weight2")
    @ApiModelProperty(value = "初始重量")
    private Double weight2;
    /**干燥总时间*/
    @XmlElement(name = "times")
    @ApiModelProperty(value = "干燥总时间")
    private Integer times;
    /**热风温度*/
    @XmlElement(name = "temp1")
    @ApiModelProperty(value = "热风温度")
    private Double temp1;
    /**环境温度*/
    @XmlElement(name = "temp2")
    @ApiModelProperty(value = "环境温度")
    private Double temp2;
    /**环境湿度*/
    @XmlElement(name = "temp3")
    @ApiModelProperty(value = "环境湿度")
    private Double temp3;
    /**荡料延时ms*/
    @XmlElement(name = "delay")
    @ApiModelProperty(value = "荡料延时ms")
    private Double delay;
    /**翻料次数*/
    @XmlElement(name = "turntime")
    @ApiModelProperty(value = "翻料次数")
    private Integer turntime;
    /**初始含水率*/
    @XmlElement(name = "moisture1")
    @ApiModelProperty(value = "初始含水率")
    private Double moisture1;
    /**目标含水率*/
    @XmlElement(name = "moisture3")
    @ApiModelProperty(value = "目标含水率")
    private Double moisture3;
}