lxw
2023-08-15 160e150009b51a39fa95d9462c3798ba28d51a09
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author lxw
 * @since 2021-12-16
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "db_pwrdev_data_rt",value ="tb_pwrdev_dcdata")
@ApiModel(value="PwrdevDcdata对象", description="")
public class PwrdevDcdata implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Long num;
 
    @TableField("PowerDeviceId")
    private Long PowerDeviceId;
 
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date recordDatetime;
 
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField(value = "record_datetime2",exist = false)
    private Date recordDatetime2;
 
    @TableField("dcIn1_vol")
    private Float dcin1Vol;
 
    @TableField("dcIn2_vol")
    private Float dcin2Vol;
 
    @TableField("dcOut1_vol")
    private Float dcout1Vol;
 
    @TableField("dcOut1_curr")
    private Float dcout1Curr;
 
    @TableField("dcOut2_vol")
    private Float dcout2Vol;
 
    @TableField("dcOut2_curr")
    private Float dcout2Curr;
 
    private Float temprature;
 
    private Integer isDc1OverVol;
 
    private Integer isDc1UnderVol;
 
    private Integer isDc2OverVol;
 
    private Integer isDc2UnderVol;
 
    private Integer isDcMonitorerr;
 
    private Integer isTempalarm;
 
    @TableField("is_acIn1_trip")
    private Integer isAcin1Trip;
 
    @TableField("is_acIn2_trip")
    private Integer isAcin2Trip;
 
    private Integer isFsw1Sw1trip;
 
    private Integer isFsw1Sw2trip;
 
    private Integer isFsw1Sw3trip;
 
    private Integer isFsw1Sw4trip;
 
    private Integer isFsw1Sw5trip;
 
    private Integer isFsw1Sw6trip;
 
    private Integer isFsw1Sw7trip;
 
    private Integer isFsw1Sw8trip;
 
    private Integer isFsw1Sw9trip;
 
    private Integer isFsw2Sw1trip;
 
    private Integer isFsw2Sw2trip;
 
    private Integer isFsw2Sw3trip;
 
    private Integer isFsw2Sw4trip;
 
    private Integer isFsw2Sw5trip;
 
    private Integer isFsw2Sw6trip;
 
    private Integer isFsw2Sw7trip;
 
    private Integer isFsw2Sw8trip;
 
    private Integer isFsw2Sw9trip;
 
    private Integer isTotalAlarm;
 
    @ApiModelProperty("字段判断是否数据有效,是否通讯超时")
    @TableField(exist = false)
    private Integer commStatus;
}