whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
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 java.util.Date;
 
@TableName(schema = "web_site",value = "tb_battdischarge_plan_temp")
public class BattDischargePlanTemp{
 
    @TableId(type=IdType.AUTO)
    private Integer id;
    private String stationId;
    private String stationName;
    private int battGroupId;
    private String battGroupName;
    private Long groupId;
    private String groupName;
    private Integer nodeStation;
    private Float monCapStd;
    private Float monVolStd;
    private Float capPercent;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date dischargeStartTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date createTime;
    private Integer createUserId;
    //0:未提交,1:已提交
    private Integer submitStatus;
    //单据审核主表id
    private Integer mainId;
 
    @TableField(exist = false)
    private Integer mainStatus;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getStationId() {
        return stationId;
    }
 
    public void setStationId(String stationId) {
        this.stationId = stationId;
    }
 
    public String getStationName() {
        return stationName;
    }
 
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
 
    public int getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(int battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public String getBattGroupName() {
        return battGroupName;
    }
 
    public void setBattGroupName(String battGroupName) {
        this.battGroupName = battGroupName;
    }
 
    public Long getGroupId() {
        return groupId;
    }
 
    public void setGroupId(Long groupId) {
        this.groupId = groupId;
    }
 
    public String getGroupName() {
        return groupName;
    }
 
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
 
    public Integer getNodeStation() {
        return nodeStation;
    }
 
    public void setNodeStation(Integer nodeStation) {
        this.nodeStation = nodeStation;
    }
 
    public Date getDischargeStartTime() {
        return dischargeStartTime;
    }
 
    public void setDischargeStartTime(Date dischargeStartTime) {
        this.dischargeStartTime = dischargeStartTime;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Float getMonCapStd() {
        return monCapStd;
    }
 
    public void setMonCapStd(Float monCapStd) {
        this.monCapStd = monCapStd;
    }
 
    public Float getMonVolStd() {
        return monVolStd;
    }
 
    public void setMonVolStd(Float monVolStd) {
        this.monVolStd = monVolStd;
    }
 
    public Float getCapPercent() {
        return capPercent;
    }
 
    public void setCapPercent(Float capPercent) {
        this.capPercent = capPercent;
    }
 
    public Integer getCreateUserId() {
        return createUserId;
    }
 
    public void setCreateUserId(Integer createUserId) {
        this.createUserId = createUserId;
    }
 
    public Integer getSubmitStatus() {
        return submitStatus;
    }
 
    public void setSubmitStatus(Integer submitStatus) {
        this.submitStatus = submitStatus;
    }
 
    public Integer getMainId() {
        return mainId;
    }
 
    public void setMainId(Integer mainId) {
        this.mainId = mainId;
    }
 
    public Integer getMainStatus() {
        return mainStatus;
    }
 
    public void setMainStatus(Integer mainStatus) {
        this.mainStatus = mainStatus;
    }
}