battinf中添加交直流屏实时数据显示标志 acdc_secuity_flag
| | |
| | | @TableField("topology_map_type") |
| | | @ApiModelProperty("拓扑图类型") |
| | | private Integer topologyMapType; |
| | | |
| | | @TableField(" acdc_secuity_flag") |
| | | @ApiModelProperty("交直流屏实时数据显示标志") |
| | | private Integer acdcSecuityFlag; |
| | | } |
| | |
| | | |
| | | public Battinf getBattGroupInfoByBattGroupId(int battGroupId) { |
| | | QueryWrapper<Battinf> queryWrapper = Wrappers.query(); |
| | | queryWrapper.select("MonVolStd", "MonCount", "cellShowType","NomCapWH","NomCapAH").eq("BattGroupId", battGroupId); |
| | | queryWrapper.select("MonVolStd", "MonCount", "cellShowType","NomCapWH","NomCapAH","acdc_secuity_flag").eq("BattGroupId", battGroupId); |
| | | return battInfMapper.selectOne(queryWrapper); |
| | | } |
| | | |