干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2024-04-16 c2fccb01b972176dc3da5a497b5e904025e9e98d
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package org.jeecg.modules.dry.entity;
 
import java.io.Serializable;
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: 工单过程趋势
 * @Author: jeecg-boot
 * @Date:   2023-03-08
 * @Version: V1.0
 */
@Data
@TableName("dry_order_trend")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="dry_order_trend对象", description="工单过程趋势")
public class DryOrderTrend implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**id*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "id")
    private String id;
    /**工单*/
    @Excel(name = "工单", width = 15)
    @ApiModelProperty(value = "工单")
    private String orderId;
    /**含水率*/
    @Excel(name = "含水率", width = 15)
    @ApiModelProperty(value = "含水率")
    private Double moisture;
    /**风机温度*/
    @Excel(name = "风机温度", width = 15)
    @ApiModelProperty(value = "风机温度")
    private Double fanTemp;
    /**风箱温度*/
    @Excel(name = "风箱温度", width = 15)
    @ApiModelProperty(value = "风箱温度")
    private Double bellowsTemp;
    /**时间*/
    @Excel(name = "时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "时间")
    private Date tim;
 
    /**总时间*/
    @Excel(name = "总时间", width = 15)
    @ApiModelProperty(value = "总时间")
    private Integer totalTime;
    /**干燥时间s*/
    @Excel(name = "干燥时间s", width = 15)
    @ApiModelProperty(value = "干燥时间s")
    private Integer dryTime;
    /**翻料次数*/
    @Excel(name = "翻料次数", width = 15)
    @ApiModelProperty(value = "翻料次数")
    private Integer turn;
    /**风机频率*/
    @Excel(name = "风机频率", width = 15)
    @ApiModelProperty(value = "风机频率")
    private Double fanFrequency;
    /**实时重量*/
    @Excel(name = "实时重量", width = 15)
    @ApiModelProperty(value = "实时重量")
    private Double weight;
    /**热风1/冷风0*/
    @Excel(name = "热风1/冷风0", width = 15)
    @ApiModelProperty(value = "热风1/冷风0")
    private Boolean wind;
    /**租户id*/
    @Excel(name = "租户id", width = 15)
    @ApiModelProperty(value = "租户id")
    private Integer tenantId;
 
 
    /**蒸汽消耗*/
    @ApiModelProperty(value = "蒸汽消耗")
    private Double steam;
 
    /**电能消耗*/
    @ApiModelProperty(value = "电能消耗")
    private Double watt;
}