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;
|
}
|
}
|