|
@@ -1,5 +1,6 @@
|
|
|
package com.persagy.apm.energy.report.monthly.detail.hotel.project.model.dto;
|
|
|
|
|
|
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.*;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -16,64 +17,27 @@ import java.util.Date;
|
|
|
@Data
|
|
|
@ApiModel(value = "创建商业报告详情入参")
|
|
|
public class AddReportHotelProjectDetailDTO {
|
|
|
- @ApiModelProperty(value = "费用信息", required = true)
|
|
|
- @NotNull(message = "费用信息不能为空") // todo 更新校验规则
|
|
|
- private Object costInfo;
|
|
|
+ @ApiModelProperty(value = "费用信息")
|
|
|
+ private HotelProjectCostInfo costInfo;
|
|
|
|
|
|
- @ApiModelProperty(value = "费用说明", required = true)
|
|
|
- @NotNull(message = "费用说明不能为空") // todo 更新校验规则
|
|
|
- private String costDescription;
|
|
|
+ @ApiModelProperty(value = "用电量概述")
|
|
|
+ private HotelProjectPowerConsumptionOutline powerUsageOutline;
|
|
|
|
|
|
- @ApiModelProperty(value = "用电量概述", required = true)
|
|
|
- @NotNull(message = "用电量概述不能为空") // todo 更新校验规则
|
|
|
- private Object powerUsageOutline;
|
|
|
+ @ApiModelProperty(value = "公区用电量")
|
|
|
+ private HotelProjectPublicPowerConsumption publicAreaPowerUsage;
|
|
|
|
|
|
- @ApiModelProperty(value = "公区用电量", required = true)
|
|
|
- @NotNull(message = "公区用电量不能为空") // todo 更新校验规则
|
|
|
- private Object publicAreaPowerUsage;
|
|
|
+ @ApiModelProperty(value = "冷站效率")
|
|
|
+ private HotelProjectChillerPlantEfficiency airConditionerEfficiency;
|
|
|
|
|
|
- @ApiModelProperty(value = "用电量说明", required = true)
|
|
|
- @NotNull(message = "用电量说明不能为空") // todo 更新校验规则
|
|
|
- private String powerUsageDescription;
|
|
|
+ @ApiModelProperty(value = "环境指标")
|
|
|
+ private HotelProjectEnvKpi envInfo;
|
|
|
|
|
|
- @ApiModelProperty(value = "冷站效率", required = true)
|
|
|
- @NotNull(message = "冷站效率不能为空") // todo 更新校验规则
|
|
|
- private Object airConditionerEfficiency;
|
|
|
+ @ApiModelProperty(value = "节能工单信息")
|
|
|
+ private HotelProjectEnergyWorkerOrderInfo energyWorkOrderInfo;
|
|
|
|
|
|
- @ApiModelProperty(value = "冷站效率说明", required = true)
|
|
|
- @NotNull(message = "冷站效率说明不能为空") // todo 更新校验规则
|
|
|
- private String airConditionerEfficiencyExplain;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "环境信息", required = true)
|
|
|
- @NotNull(message = "环境信息不能为空") // todo 更新校验规则
|
|
|
- private Object envInfo;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "环境说明", required = true)
|
|
|
- @NotNull(message = "环境说明不能为空") // todo 更新校验规则
|
|
|
- private String envDescription;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "节能工单信息", required = true)
|
|
|
- @NotNull(message = "节能工单信息不能为空") // todo 更新校验规则
|
|
|
- private Object energyWorkOrderInfo;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "节能工单说明", required = true)
|
|
|
- @NotNull(message = "节能工单说明不能为空") // todo 更新校验规则
|
|
|
- private String energyWorkOrderDescription;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "平台运行信息", required = true)
|
|
|
- @NotNull(message = "平台运行信息不能为空") // todo 更新校验规则
|
|
|
- private Object platformRuntimeInfo;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "平台运行描述", required = true)
|
|
|
- @NotNull(message = "平台运行描述不能为空") // todo 更新校验规则
|
|
|
- private String platformRuntimeDescription;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "报警处理信息", required = true)
|
|
|
- @NotNull(message = "报警处理信息不能为空") // todo 更新校验规则
|
|
|
- private Object alarmDealInfo;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "报警处理说明", required = true)
|
|
|
- @NotNull(message = "报警处理说明不能为空") // todo 更新校验规则
|
|
|
- private String alarmDealDescription;
|
|
|
+ @ApiModelProperty(value = "平台运行信息")
|
|
|
+ private HotelProjectMaintenanceInfo platformRuntimeInfo;
|
|
|
|
|
|
+ @ApiModelProperty(value = "报警处理信息")
|
|
|
+ private HotelProjectAlarmDealInfo alarmDealInfo;
|
|
|
}
|