fg电池监控平台的达梦数据库版本
whycxzp
2024-11-11 f6cec8970fa54813be5e7eebf641253b7a304606
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
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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.whyc.dto.Page;
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 xuzhongpei
 * @since 2021-12-15
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "web_site",value = "tb_battdischarge_plan")
@ApiModel(value="BattdischargePlan对象", description="")
@JsonIgnoreProperties(ignoreUnknown = true)
public class BattdischargePlan implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    private Integer battgroupid;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date dischargeStarttime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private Date dischargeStarttime1;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date dischargeStoptime;
 
    @ApiModelProperty(value = "放电状态   0未开始放电,1放电延时 2放电完成 3放电进行,4放电失败")
    private Integer dischargeState;
 
    private String dischargeReason;
 
    private String note;
    // 放电计划是否有效: 0无效。1有效
    private Integer dischargeCleartype;
 
    @TableField("battIndexInFbs")
    private Integer battIndexInFbs;
 
    private Integer presetTime;
 
    private Float presetCap;
 
    private Float presetMonvol;
 
    private Float presetGroupvol;
 
    private Integer presetMon;
 
    private Float presetCurr;
 
    private Float dcvolhighlimit;
 
    private Float chargecurrset;
 
    private Integer planCircle;
 
    private Integer planRate;
 
    private Integer alreadyCount;
 
    private Integer baojiGroupId;
 
    private Date createTime;
 
    @TableField(exist = false)
    private String stationId;
 
    @TableField(exist = false)
    private String stationName;
 
    @TableField(exist = false)
    private String stationName1;
 
    @TableField(exist = false)
    private String stationName3;
 
    @TableField(exist = false)
    private String battGroupName;
 
    @TableField("nodeStation")
    private int nodeStation;
 
    @TableField(exist = false)
    private Float monCapStd;
 
    @TableField(exist = false)
    private Float loadCurr;
 
    @TableField(exist = false)
    @JsonProperty(value = "uId")
    private int uId;
 
    @TableField(exist = false)
    private Page page;
 
    @TableField(exist = false)
    private String baojiGroupName;
}