|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.hnac.hzims.operational.main.vo; |
|
|
|
package com.hnac.hzims.operational.main.vo; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.NullSerializer; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
|
@ -10,65 +12,85 @@ import lombok.Data; |
|
|
|
public class AreaMonthReportVo { |
|
|
|
public class AreaMonthReportVo { |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "区域Id") |
|
|
|
@ApiModelProperty(value = "区域Id") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Long areaId; |
|
|
|
private Long areaId; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "区域名称") |
|
|
|
@ApiModelProperty(value = "区域名称") |
|
|
|
private String areaName; |
|
|
|
private String areaName; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "计划发电量") |
|
|
|
@ApiModelProperty(value = "计划发电量") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Float planPower; |
|
|
|
private Float planPower; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "实际发电量") |
|
|
|
@ApiModelProperty(value = "实际发电量") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Float actualPower; |
|
|
|
private Float actualPower; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "发电完成率") |
|
|
|
@ApiModelProperty(value = "发电完成率") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Double powerFinishRate; |
|
|
|
private Double powerFinishRate; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "同比") |
|
|
|
@ApiModelProperty(value = "同比") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Double comparePowerRate; |
|
|
|
private Double comparePowerRate; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "发电计划预测") |
|
|
|
@ApiModelProperty(value = "发电计划预测") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Double predictPlanPower; |
|
|
|
private Double predictPlanPower; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "操作票") |
|
|
|
@ApiModelProperty(value = "操作票") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer operate; |
|
|
|
private Integer operate; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "操作票合格率") |
|
|
|
@ApiModelProperty(value = "操作票合格率") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Double operaQualifyRate; |
|
|
|
private Double operaQualifyRate; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "工作票") |
|
|
|
@ApiModelProperty(value = "工作票") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer work; |
|
|
|
private Integer work; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "工作票合格率") |
|
|
|
@ApiModelProperty(value = "工作票合格率") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Double workQualifyRate; |
|
|
|
private Double workQualifyRate; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "日常维护") |
|
|
|
@ApiModelProperty(value = "日常维护") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer routineMaintenance; |
|
|
|
private Integer routineMaintenance; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "巡检任务") |
|
|
|
@ApiModelProperty(value = "巡检任务") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer inspect; |
|
|
|
private Integer inspect; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "缺陷数") |
|
|
|
@ApiModelProperty(value = "缺陷数") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer defect; |
|
|
|
private Integer defect; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "消缺率") |
|
|
|
@ApiModelProperty(value = "消缺率") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Double defectRate; |
|
|
|
private Double defectRate; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "检修任务数量") |
|
|
|
@ApiModelProperty(value = "检修任务数量") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer maintenanceTasks; |
|
|
|
private Integer maintenanceTasks; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "安全生产会议次数") |
|
|
|
@ApiModelProperty(value = "安全生产会议次数") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer safetyMeeting; |
|
|
|
private Integer safetyMeeting; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "月度自查报告") |
|
|
|
@ApiModelProperty(value = "月度自查报告") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer selfReport; |
|
|
|
private Integer selfReport; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "设备试验") |
|
|
|
@ApiModelProperty(value = "设备试验") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer deviceTry; |
|
|
|
private Integer deviceTry; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "技能培训") |
|
|
|
@ApiModelProperty(value = "技能培训") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer skillTrainy; |
|
|
|
private Integer skillTrainy; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "安全大检查") |
|
|
|
@ApiModelProperty(value = "安全大检查") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Integer securityCheck; |
|
|
|
private Integer securityCheck; |
|
|
|
} |
|
|
|
} |
|
|
|