代码规范修改
This commit is contained in:
parent
45c37da4aa
commit
20b3d50c5e
|
|
@ -31,6 +31,21 @@ public class OperatingQualityVo {
|
|||
@ApiModelProperty("设备状态")
|
||||
private String status;
|
||||
|
||||
@ApiModelProperty(value = "变化值")
|
||||
private String changeVal;
|
||||
|
||||
@ApiModelProperty(value = "原数据")
|
||||
private String sourceData;
|
||||
|
||||
@ApiModelProperty(value = "区域名称")
|
||||
private String areaName;
|
||||
|
||||
@ApiModelProperty(value = "区域名称")
|
||||
private String createTime;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@
|
|||
thdv.change_val AS changeVal,
|
||||
thdv.create_time AS createTime,
|
||||
thdv.source_data AS sourceData,
|
||||
thdv.is_warn AS isWarn
|
||||
FROM tb_bd_device tbd
|
||||
JOIN tb_device_detail tdd ON tbd.device_id = tdd.device_id
|
||||
JOIN tb_area ta ON tbd.area_id = ta.area_id
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
FROM t_team_people ttp
|
||||
JOIN sys_user su ON ttp.user_id = su.user_id
|
||||
JOIN tb_work_team twt ON ttp.team_id = twt.team_id
|
||||
JOIN tb_user_bind_cap tuc ON ttp.user_id = tuc.cop_id
|
||||
JOIN tb_user_bind_cap tuc ON ttp.user_id = tuc.people_id
|
||||
JOIN tb_device tbd ON tuc.device_id = tbd.device_id
|
||||
JOIN tb_rel_device trd ON tbd.device_id = trd.device_id
|
||||
WHERE twt.bid_code = #{bidCode}
|
||||
|
|
|
|||
Loading…
Reference in New Issue