首次提交
This commit is contained in:
parent
621a749dd3
commit
c4463a05a9
|
|
@ -0,0 +1,78 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件八-输配电线停运及恢复
|
||||
* @author ztq
|
||||
*/
|
||||
@Data
|
||||
public class AnnexEightBean {
|
||||
|
||||
/**
|
||||
* 特高压
|
||||
*/
|
||||
private String transmit_electricity_add_outage_uvh;
|
||||
private String transmit_electricity_add_repair_uvh;
|
||||
private String transmit_electricity_add_no_repair_uvh;
|
||||
|
||||
private String transmit_electricity_cumulative_outage_uvh;
|
||||
private String transmit_electricity_cumulative_repair_uvh;
|
||||
private String transmit_electricity_cumulative_no_repair_uvh;
|
||||
|
||||
/**
|
||||
* 500kv
|
||||
*/
|
||||
private String transmit_electricity_add_outage_five;
|
||||
private String transmit_electricity_add_repair_five;
|
||||
private String transmit_electricity_add_no_repair_five;
|
||||
|
||||
private String transmit_electricity_cumulative_outage_five;
|
||||
private String transmit_electricity_cumulative_repair_five;
|
||||
private String transmit_electricity_cumulative_no_repair_five;
|
||||
|
||||
/**
|
||||
* 220/300kv
|
||||
*/
|
||||
private String transmit_electricity_add_outage_two;
|
||||
private String transmit_electricity_add_repair_two;
|
||||
private String transmit_electricity_add_no_repair_two;
|
||||
|
||||
private String transmit_electricity_cumulative_outage_two;
|
||||
private String transmit_electricity_cumulative_repair_two;
|
||||
private String transmit_electricity_cumulative_no_repair_two;
|
||||
|
||||
/**
|
||||
* 110/66kv
|
||||
*/
|
||||
private String transmit_electricity_add_outage_one;
|
||||
private String transmit_electricity_add_repair_one;
|
||||
private String transmit_electricity_add_no_repair_one;
|
||||
|
||||
private String transmit_electricity_cumulative_outage_one;
|
||||
private String transmit_electricity_cumulative_repair_one;
|
||||
private String transmit_electricity_cumulative_no_repair_one;
|
||||
|
||||
/**
|
||||
* 35kv
|
||||
*/
|
||||
private String transmit_electricity_add_outage_three;
|
||||
private String transmit_electricity_add_repair_three;
|
||||
private String transmit_electricity_add_no_repair_three;
|
||||
|
||||
private String transmit_electricity_cumulative_outage_three;
|
||||
private String transmit_electricity_cumulative_repair_three;
|
||||
private String transmit_electricity_cumulative_no_repair_three;
|
||||
|
||||
/**
|
||||
* 10kv
|
||||
*/
|
||||
private String transmit_electricity_add_outage_ten;
|
||||
private String transmit_electricity_add_repair_ten;
|
||||
private String transmit_electricity_add_no_repair_ten;
|
||||
|
||||
private String transmit_electricity_cumulative_outage_ten;
|
||||
private String transmit_electricity_cumulative_repair_ten;
|
||||
private String transmit_electricity_cumulative_no_repair_ten;
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexTenBean
|
||||
* 类描述:附件十一
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年08月01日 13:23
|
||||
*/
|
||||
@Data
|
||||
public class AnnexElevenBean {
|
||||
private String uhv;
|
||||
private String fiveHundredKv;
|
||||
private String twoHundredTwentyKv;
|
||||
private String oneHundredTenKv;
|
||||
private String thirtyFiveKv;
|
||||
private String tenKv;
|
||||
private String averageWaterLevel;
|
||||
private String measuredValue;
|
||||
private String actionHasBeenTaken;
|
||||
}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexFiveBean
|
||||
* 类描述:附件五 入境筛查和集中观察场所供电保障情况表
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年07月27日 11:29
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class AnnexFiveBean {
|
||||
//入境筛选和集中观察场所数量
|
||||
private String airportPort;
|
||||
private String venueHospital;
|
||||
private String guesthouseHotel;
|
||||
private String safeguardPersonnel;
|
||||
//投入力量
|
||||
private String electricallyGuaranteedVehicles;
|
||||
private String powerGenerationVehicles;
|
||||
private String dynamo;
|
||||
private String remark;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件四-疫情防控供电保障情况统计表
|
||||
* @author zys
|
||||
*/
|
||||
@Data
|
||||
public class AnnexFourBean {
|
||||
|
||||
/**
|
||||
* 定点医院
|
||||
*/
|
||||
private String designated_hospitals;
|
||||
|
||||
/**
|
||||
* 发热门诊
|
||||
*/
|
||||
private String fever_clinic;
|
||||
|
||||
/**
|
||||
* 防疫用品企业
|
||||
*/
|
||||
private String epidemic_enterprise;
|
||||
|
||||
/**
|
||||
* 其他重要用户
|
||||
*/
|
||||
private String other_important_users;
|
||||
|
||||
/**
|
||||
* 客户用电保障人员
|
||||
*/
|
||||
private String customer_power_personnel;
|
||||
|
||||
/**
|
||||
* 电网运维保障人员
|
||||
*/
|
||||
private String power_devops_personnel;
|
||||
|
||||
/**
|
||||
* 保电车辆
|
||||
*/
|
||||
private String electrically_vehicles;
|
||||
|
||||
/**
|
||||
* 应急发电车
|
||||
*/
|
||||
private String emergency_power_vehicles;
|
||||
|
||||
/**
|
||||
* 应急发电机
|
||||
*/
|
||||
private String emergency_generator;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexTwelveBean
|
||||
* 类描述:附件十四 超设计风力线路数量统计表
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年07月27日 13:15
|
||||
*/
|
||||
@Data
|
||||
public class AnnexFourteenBean {
|
||||
private String uhv;
|
||||
private String fiveHundredKv;
|
||||
private String twoHundredTwentyKv;
|
||||
private String oneHundredTenKv;
|
||||
private String thirtyFiveKv;
|
||||
private String tenKv;
|
||||
private String averageWaterLevel;
|
||||
private String measuredValue;
|
||||
private String designValues;
|
||||
private String actionHasBeenTaken;
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件九-台区用户停电及恢复
|
||||
* @author ztq
|
||||
*/
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AnnexNineBean {
|
||||
|
||||
/**
|
||||
* 台区
|
||||
*/
|
||||
private String add_blackout_tai_district;
|
||||
private String add_repair_tai_district;
|
||||
private String add_no_repair_tai_district;
|
||||
|
||||
private String cumulative_blackout_tai_district;
|
||||
private String cumulative_repair_tai_district;
|
||||
private String cumulative_no_repair_tai_district;
|
||||
|
||||
/**
|
||||
* 用户
|
||||
*/
|
||||
private String add_blackout_user;
|
||||
private String add_repair_user;
|
||||
private String add_no_repair_user;
|
||||
|
||||
private String cumulative_blackout_user;
|
||||
private String cumulative_repair_user;
|
||||
private String cumulative_no_repair_user;
|
||||
|
||||
/**
|
||||
* 出动抢修力量
|
||||
* 人员 车辆
|
||||
*/
|
||||
private String add_power_personnel;
|
||||
private String add_power_vehicle;
|
||||
|
||||
private String cumulative_power_personnel;
|
||||
private String cumulative_power_vehicle;
|
||||
}
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件一-操练情况统计表
|
||||
* @author zys
|
||||
*/
|
||||
@Data
|
||||
public class AnnexOneBean {
|
||||
|
||||
/**
|
||||
* 操练内容(选择框)
|
||||
* “四要素”检查
|
||||
* 通信测试
|
||||
* 重要站线视频连线检查
|
||||
*/
|
||||
private String exercise_content;
|
||||
|
||||
/**
|
||||
* 操练数量
|
||||
* 人员
|
||||
*/
|
||||
private String exercise_person_num;
|
||||
|
||||
/**
|
||||
* 操练数量
|
||||
* 车辆
|
||||
*/
|
||||
private String exercise_vehicle_num;
|
||||
|
||||
/**
|
||||
* 操练数量
|
||||
* 发电车
|
||||
*/
|
||||
private String exercise_power_vehicle_num;
|
||||
|
||||
/**
|
||||
* 操练数量
|
||||
* 发电机
|
||||
*/
|
||||
private String exercise_dynamo_num;
|
||||
|
||||
/**
|
||||
* 操练发现的问题
|
||||
*/
|
||||
private String exercise_find_problems;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件七-变电站停运及恢复
|
||||
* @author ztq
|
||||
*/
|
||||
@Data
|
||||
public class AnnexSevenBean {
|
||||
|
||||
/**
|
||||
* 特高压
|
||||
*/
|
||||
private String power_substation_add_outage_uvh;
|
||||
private String power_substation_add_repair_uvh;
|
||||
private String power_substation_add_no_repair_uvh;
|
||||
|
||||
private String power_substation_cumulative_outage_uvh;
|
||||
private String power_substation_cumulative_repair_uvh;
|
||||
private String power_substation_cumulative_no_repair_uvh;
|
||||
|
||||
/**
|
||||
* 500kv
|
||||
*/
|
||||
private String power_substation_add_outage_five;
|
||||
private String power_substation_add_repair_five;
|
||||
private String power_substation_add_no_repair_five;
|
||||
|
||||
private String power_substation_cumulative_outage_five;
|
||||
private String power_substation_cumulative_repair_five;
|
||||
private String power_substation_cumulative_no_repair_five;
|
||||
|
||||
/**
|
||||
* 220/300kv
|
||||
*/
|
||||
private String power_substation_add_outage_two;
|
||||
private String power_substation_add_repair_two;
|
||||
private String power_substation_add_no_repair_two;
|
||||
|
||||
private String power_substation_cumulative_outage_two;
|
||||
private String power_substation_cumulative_repair_two;
|
||||
private String power_substation_cumulative_no_repair_two;
|
||||
|
||||
/**
|
||||
* 110/66kv
|
||||
*/
|
||||
private String power_substation_add_outage_one;
|
||||
private String power_substation_add_repair_one;
|
||||
private String power_substation_add_no_repair_one;
|
||||
|
||||
private String power_substation_cumulative_outage_one;
|
||||
private String power_substation_cumulative_repair_one;
|
||||
private String power_substation_cumulative_no_repair_one;
|
||||
|
||||
/**
|
||||
* 35kv
|
||||
*/
|
||||
private String power_substation_add_outage_three;
|
||||
private String power_substation_add_repair_three;
|
||||
private String power_substation_add_no_repair_three;
|
||||
|
||||
private String power_substation_cumulative_outage_three;
|
||||
private String power_substation_cumulative_repair_three;
|
||||
private String power_substation_cumulative_no_repair_three;
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件六-预警及应急响应情况跟踪表
|
||||
* @author zys
|
||||
*/
|
||||
@Data
|
||||
public class AnnexSixBean {
|
||||
|
||||
/**
|
||||
* 领导及指挥人员
|
||||
*/
|
||||
private String leaders_command_staff;
|
||||
|
||||
/**
|
||||
* 投入力量
|
||||
* 人员
|
||||
*/
|
||||
private String input_amount_person;
|
||||
|
||||
/**
|
||||
* 投入力量
|
||||
* 车辆
|
||||
*/
|
||||
private String input_amount_vehicle;
|
||||
|
||||
/**
|
||||
* 投入力量
|
||||
* 发电车
|
||||
*/
|
||||
private String input_amount_power_vehicle;
|
||||
|
||||
/**
|
||||
* 投入力量
|
||||
* 发电机
|
||||
*/
|
||||
private String input_amount_dynamo;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexTenBean
|
||||
* 类描述:附件十
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年08月01日 13:23
|
||||
*/
|
||||
@Data
|
||||
public class AnnexTenBean {
|
||||
private String uhv;
|
||||
private String fiveHundredKv;
|
||||
private String twoHundredTwentyKv;
|
||||
private String oneHundredTenKv;
|
||||
private String thirtyFiveKv;
|
||||
private String tenKv;
|
||||
private String averageWaterLevel;
|
||||
private String measuredValue;
|
||||
private String designValues;
|
||||
private String actionHasBeenTaken;
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexTwelveBean
|
||||
* 类描述:附件十三 超设计水位线路数量统计表(仅6月-9月报送)
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年07月27日 13:15
|
||||
*/
|
||||
@Data
|
||||
public class AnnexThirteenBean {
|
||||
private String uhv;
|
||||
private String fiveHundredKv;
|
||||
private String twoHundredTwentyKv;
|
||||
private String oneHundredTenKv;
|
||||
private String thirtyFiveKv;
|
||||
private String tenKv;
|
||||
private String averageWaterLevel;
|
||||
private String measuredValue;
|
||||
private String designValues;
|
||||
private String actionHasBeenTaken;
|
||||
}
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexThreeBean
|
||||
* 类描述:附件三 电网生产相关专业员工感染情况统计表
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年07月27日 11:18
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class AnnexThreeBean {
|
||||
//合计 新增
|
||||
private String totalAddDiagnosed;
|
||||
private String totalAddHeal;
|
||||
private String totalAddSuspected;
|
||||
//合计 现有
|
||||
private String totalExistingDiagnosed;
|
||||
private String totalExistingHeal;
|
||||
private String totalExistingSuspected;
|
||||
//电网调度 新增
|
||||
private String dispatchAddDiagnosed;
|
||||
private String dispatchAddHeal;
|
||||
private String dispatchAddSuspected;
|
||||
//电网调度 现有
|
||||
private String dispatchExistingDiagnosed;
|
||||
private String dispatchExistingHeal;
|
||||
private String dispatchExistingSuspected;
|
||||
//运维维修 新增
|
||||
private String repairAddDiagnosed;
|
||||
private String repairAddHeal;
|
||||
private String repairAddSuspected;
|
||||
//运维维修 现有
|
||||
private String repairExistingDiagnosed;
|
||||
private String repairExistingHeal;
|
||||
private String repairExistingSuspected;
|
||||
//营销服务 新增
|
||||
private String marketingAddDiagnosed;
|
||||
private String marketingAddHeal;
|
||||
private String marketingAddSuspected;
|
||||
//营销服务 现有
|
||||
private String marketingExistingDiagnosed;
|
||||
private String marketingExistingHeal;
|
||||
private String marketingExistingSuspected;
|
||||
//电网建设 新增
|
||||
private String constructionAddDiagnosed;
|
||||
private String constructionAddHeal;
|
||||
private String constructionAddSuspected;
|
||||
//电网建设 现有
|
||||
private String constructionExistingDiagnosed;
|
||||
private String constructionExistingHeal;
|
||||
private String constructionExistingSuspected;
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 包名称:com.bonus.autoweb.UI.entity
|
||||
* 类名称:AnnexTwelveBean
|
||||
* 类描述:附件十二 超设计水位变电站数量统计表(仅6月-9月报送)
|
||||
* 创建人:@author tqzhang
|
||||
* 创建时间:2023年07月27日 13:15
|
||||
*/
|
||||
@Data
|
||||
public class AnnexTwelveBean {
|
||||
private String uhv;
|
||||
private String fiveHundredKv;
|
||||
private String twoHundredTwentyKv;
|
||||
private String oneHundredTenKv;
|
||||
private String thirtyFiveKv;
|
||||
private String tenKv;
|
||||
private String averageWaterLevel;
|
||||
private String measuredValue;
|
||||
private String designValues;
|
||||
private String actionHasBeenTaken;
|
||||
}
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* 附件二-资源核查问题数量统计表
|
||||
* @author zys
|
||||
*/
|
||||
@Data
|
||||
public class AnnexTwoBean {
|
||||
|
||||
/**
|
||||
* 核查数量
|
||||
* 人员
|
||||
*/
|
||||
private String verification_person_num;
|
||||
|
||||
/**
|
||||
* 核查数量
|
||||
* 队伍
|
||||
*/
|
||||
private String verification_team_num;
|
||||
|
||||
/**
|
||||
* 核查数量
|
||||
* 装备
|
||||
*/
|
||||
private String verification_equip_num;
|
||||
|
||||
/**
|
||||
* 核查数量
|
||||
* 物资
|
||||
*/
|
||||
private String verification_material_num;
|
||||
|
||||
/**
|
||||
* 核查数量
|
||||
* 车辆
|
||||
*/
|
||||
private String verification_vehicle_num;
|
||||
|
||||
/**
|
||||
* 核查发现的问题
|
||||
*/
|
||||
private String verification_find_problems;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,140 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 日报实体类
|
||||
* @author zys
|
||||
*/
|
||||
@Data
|
||||
public class DailyBean {
|
||||
|
||||
/**
|
||||
* 总体情况
|
||||
*/
|
||||
private String overall;
|
||||
|
||||
/**
|
||||
* 重要事项
|
||||
*/
|
||||
private String important_matters;
|
||||
|
||||
/**
|
||||
* 安全生产情况
|
||||
*/
|
||||
private String safety_production;
|
||||
|
||||
/**
|
||||
* 值班员日常工作情况
|
||||
*/
|
||||
private String personnel_daily_work;
|
||||
|
||||
/**
|
||||
* 供电保障情况
|
||||
* 今日重大活动保电情况
|
||||
*/
|
||||
private String power_guarantee_today_work;
|
||||
|
||||
/**
|
||||
* 供电保障情况
|
||||
* 明日重大保电情况
|
||||
*/
|
||||
private String power_guarantee_tomorrow_work;
|
||||
|
||||
/**
|
||||
* 供电保障情况
|
||||
* 今日疫情防控应急保电情况
|
||||
*/
|
||||
private String power_guarantee_today_pestilence;
|
||||
|
||||
/**
|
||||
* 预警及应急响应情况
|
||||
* 公司预警情况
|
||||
*/
|
||||
private String warning_company;
|
||||
|
||||
/**
|
||||
* 预警及应急响应情况
|
||||
* 公司应急响应情况
|
||||
*/
|
||||
private String warning_company_impatient;
|
||||
|
||||
/**
|
||||
* 预警及应急响应情况
|
||||
* 社会突发事件救援及处置情况
|
||||
*/
|
||||
private String warning_society_emergency;
|
||||
|
||||
/**
|
||||
* 其他情况说明
|
||||
*/
|
||||
private String other_situations;
|
||||
|
||||
/**
|
||||
* 附件一
|
||||
*/
|
||||
private AnnexOneBean oneBean;
|
||||
|
||||
/**
|
||||
* 附件二
|
||||
*/
|
||||
private AnnexTwoBean twoBean;
|
||||
|
||||
/**
|
||||
* 附件三
|
||||
*/
|
||||
private AnnexThreeBean threeBean;
|
||||
|
||||
/**
|
||||
* 附件四
|
||||
*/
|
||||
private AnnexFourBean fourBean;
|
||||
|
||||
/**
|
||||
* 附件五
|
||||
*/
|
||||
private AnnexFiveBean fiveBean;
|
||||
|
||||
/**
|
||||
* 附件六
|
||||
*/
|
||||
private AnnexSixBean sixBean;
|
||||
|
||||
/**
|
||||
* 附件七
|
||||
*/
|
||||
private AnnexSevenBean sevenBean;
|
||||
|
||||
/**
|
||||
* 附件八
|
||||
*/
|
||||
private AnnexEightBean eightBean;
|
||||
|
||||
/**
|
||||
* 附件九
|
||||
*/
|
||||
private AnnexNineBean nineBean;
|
||||
|
||||
/**
|
||||
* 附件十
|
||||
*/
|
||||
private AnnexTenBean tenBean;
|
||||
/**
|
||||
* 附件十一
|
||||
*/
|
||||
private AnnexElevenBean elevenBean;
|
||||
/**
|
||||
* 附件十二
|
||||
*/
|
||||
private AnnexTwelveBean twelveBean;
|
||||
|
||||
/**
|
||||
* 附件十三
|
||||
*/
|
||||
private AnnexThirteenBean thirteenBean;
|
||||
|
||||
/**
|
||||
* 附件十四
|
||||
*/
|
||||
private AnnexFourteenBean fourteenBean;
|
||||
}
|
||||
|
|
@ -0,0 +1,108 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 日志实体类
|
||||
* @author zys
|
||||
*/
|
||||
@Data
|
||||
public class LogBean implements Serializable {
|
||||
|
||||
/**
|
||||
* 天气
|
||||
*/
|
||||
private String weather;
|
||||
/**
|
||||
* 最低气温 0/10
|
||||
*/
|
||||
private String min_temperature;
|
||||
|
||||
/**
|
||||
* 最高气温 0/10
|
||||
*/
|
||||
private String max_temperature;
|
||||
|
||||
/**
|
||||
* 事件检测标题
|
||||
*/
|
||||
private String event_detection_title;
|
||||
|
||||
/**
|
||||
* 事件检测内容
|
||||
*/
|
||||
private String event_detection_content;
|
||||
|
||||
/**
|
||||
* 保电工作标题
|
||||
*/
|
||||
private String power_work_title;
|
||||
|
||||
/**
|
||||
* 保电工作内容
|
||||
*/
|
||||
private String power_work_content;
|
||||
|
||||
/**
|
||||
* 资源核查情况标题
|
||||
*/
|
||||
private String resource_check_title;
|
||||
|
||||
/**
|
||||
* 资源核查情况内容
|
||||
*/
|
||||
private String resource_check_content;
|
||||
|
||||
/**
|
||||
* 通信测试标题
|
||||
*/
|
||||
private String communications_test_title;
|
||||
|
||||
/**
|
||||
* 通信测试内容
|
||||
*/
|
||||
private String communications_test_content;
|
||||
|
||||
/**
|
||||
* 日常操作情况标题
|
||||
*/
|
||||
private String daily_operation_title;
|
||||
|
||||
/**
|
||||
* 日常操作情况内容
|
||||
*/
|
||||
private String daily_operation_content;
|
||||
|
||||
/**
|
||||
* 日报提报情况标题
|
||||
*/
|
||||
private String daily_submission_title;
|
||||
|
||||
/**
|
||||
* 日报提报情况内容
|
||||
*/
|
||||
private String daily_submission_content;
|
||||
|
||||
/**
|
||||
* 预警处置标题
|
||||
*/
|
||||
private String warning_disposal_title;
|
||||
|
||||
/**
|
||||
* 预警处置内容
|
||||
*/
|
||||
private String warning_disposal_content;
|
||||
|
||||
/**
|
||||
* 一般记事标题
|
||||
*/
|
||||
private String general_chronicles_title;
|
||||
|
||||
/**
|
||||
* 一般记事内容
|
||||
*/
|
||||
private String general_chronicles_content;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,117 @@
|
|||
package com.bonus.autoweb.UI.entity;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* FileName: WeatherData
|
||||
*
|
||||
* @author tqzhang
|
||||
* Date: 2024/4/9 14:11
|
||||
* Description:天气
|
||||
*/
|
||||
@Data
|
||||
public class WeatherData {
|
||||
private int code;
|
||||
private WeatherDataChild data;
|
||||
|
||||
public static class WeatherDataChild {
|
||||
private int page;
|
||||
private int rows;
|
||||
private String city;
|
||||
@SerializedName("weather12") // 使用注解指定 JSON 中的字段名
|
||||
private String weatherNoon;
|
||||
@SerializedName("weather24") // 使用注解指定 JSON 中的字段名
|
||||
private String weatherNight;
|
||||
@SerializedName("temperature1") // 使用注解指定 JSON 中的字段名
|
||||
private String minTemperature;
|
||||
@SerializedName("temperature2") // 使用注解指定 JSON 中的字段名
|
||||
private String maxTemperature;
|
||||
private String rectime;
|
||||
|
||||
public int getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
public void setPage(int page) {
|
||||
this.page = page;
|
||||
}
|
||||
|
||||
public int getRows() {
|
||||
return rows;
|
||||
}
|
||||
|
||||
public void setRows(int rows) {
|
||||
this.rows = rows;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public String getWeatherNoon() {
|
||||
return weatherNoon;
|
||||
}
|
||||
|
||||
public void setWeatherNoon(String weatherNoon) {
|
||||
this.weatherNoon = weatherNoon;
|
||||
}
|
||||
|
||||
public String getWeatherNight() {
|
||||
return weatherNight;
|
||||
}
|
||||
|
||||
public void setWeatherNight(String weatherNight) {
|
||||
this.weatherNight = weatherNight;
|
||||
}
|
||||
|
||||
public String getMinTemperature() {
|
||||
return minTemperature;
|
||||
}
|
||||
|
||||
public void setMinTemperature(String minTemperature) {
|
||||
this.minTemperature = minTemperature;
|
||||
}
|
||||
|
||||
public String getMaxTemperature() {
|
||||
return maxTemperature;
|
||||
}
|
||||
|
||||
public void setMaxTemperature(String maxTemperature) {
|
||||
this.maxTemperature = maxTemperature;
|
||||
}
|
||||
|
||||
public String getRectime() {
|
||||
return rectime;
|
||||
}
|
||||
|
||||
public void setRectime(String rectime) {
|
||||
this.rectime = rectime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "WeatherDataChild{" +
|
||||
"page=" + page +
|
||||
", rows=" + rows +
|
||||
", city='" + city + '\'' +
|
||||
", weatherNoon='" + weatherNoon + '\'' +
|
||||
", weatherNight='" + weatherNight + '\'' +
|
||||
", minTemperature='" + minTemperature + '\'' +
|
||||
", maxTemperature='" + maxTemperature + '\'' +
|
||||
", rectime='" + rectime + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "WeatherData{" +
|
||||
"code=" + code +
|
||||
", data=" + data +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue