运行策略防逆流逻辑修改
This commit is contained in:
@ -66,6 +66,10 @@ public class EmsStrategyLog extends BaseEntity
|
||||
@Excel(name = "防逆流, 1-是、0-否")
|
||||
private Integer antiReverse;
|
||||
|
||||
/** PCS降功率类型 */
|
||||
@Excel(name = "PCS降功率类型,0-降低功率、1-增加功率")
|
||||
private Integer powerDownType;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
@ -172,6 +176,14 @@ public class EmsStrategyLog extends BaseEntity
|
||||
this.antiReverse = antiReverse;
|
||||
}
|
||||
|
||||
public Integer getPowerDownType() {
|
||||
return powerDownType;
|
||||
}
|
||||
|
||||
public void setPowerDownType(Integer powerDownType) {
|
||||
this.powerDownType = powerDownType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
@ -187,6 +199,7 @@ public class EmsStrategyLog extends BaseEntity
|
||||
.append("chargeStatus", getChargeStatus())
|
||||
.append("executionDate", getExecutionDate())
|
||||
.append("antiReverse", getAntiReverse())
|
||||
.append("powerDownType", getPowerDownType())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
|
||||
@ -59,4 +59,6 @@ public interface EmsStrategyLogMapper
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteEmsStrategyLogByIds(Long[] ids);
|
||||
|
||||
EmsStrategyLog getLastStrategyLog(EmsStrategyLog query);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user