fix:近6个月统计涉密网络统计

pg_adapter
wangxy 6 months ago
parent ac6afc2520
commit dc213af076

@ -276,7 +276,7 @@ public class SysPropertynumController extends BaseController {
tdPropertManager.setMinDayTime(minDayTime); tdPropertManager.setMinDayTime(minDayTime);
tdPropertManager.setMaxDayTime(maxDayTime); tdPropertManager.setMaxDayTime(maxDayTime);
tdPropertManager.setSecretsType("1"); tdPropertManager.setSecretsType("1");
Integer countWx = tdPropertyManagerService.countMessageMonth(tdPropertManager); Integer countWx = tdPropertyManagerService.countMessageWxMonth(tdPropertManager);
if(Objects.isNull(countWx)){ if(Objects.isNull(countWx)){
countWx = 0; countWx = 0;
} }

@ -71,4 +71,6 @@ public interface TdPropertyManagerMapper extends BaseMapper<TdPropertyManager>
public Integer countSecretsMonth(PropertyManagerDTO propertyManagerDTO); public Integer countSecretsMonth(PropertyManagerDTO propertyManagerDTO);
public Integer countDestoryMonth(PropertyManagerDTO propertyManagerDTO); public Integer countDestoryMonth(PropertyManagerDTO propertyManagerDTO);
public Integer countMessageWxMonth(PropertyManagerDTO propertyManagerDTO);
} }

@ -73,4 +73,7 @@ public interface ITdPropertyManagerService extends IService<TdPropertyManager>
public Integer countDestoryMonth(PropertyManagerDTO propertyManagerDTO); public Integer countDestoryMonth(PropertyManagerDTO propertyManagerDTO);
public Integer countMessageWxMonth(PropertyManagerDTO propertyManagerDTO);
} }

@ -113,4 +113,9 @@ public class TdPropertyManagerServiceImpl extends ServiceImpl<TdPropertyManagerM
public Integer countDestoryMonth(PropertyManagerDTO propertyManagerDTO) { public Integer countDestoryMonth(PropertyManagerDTO propertyManagerDTO) {
return tdPropertyManagerMapper.countDestoryMonth(propertyManagerDTO); return tdPropertyManagerMapper.countDestoryMonth(propertyManagerDTO);
} }
@Override
public Integer countMessageWxMonth(PropertyManagerDTO propertyManagerDTO) {
return tdPropertyManagerMapper.countMessageWxMonth(propertyManagerDTO);
}
} }

@ -133,4 +133,12 @@
and d.destory_state =#{destoryState} and d.destory_state =#{destoryState}
</select> </select>
<select id="countMessageWxMonth" resultType="java.lang.Integer" parameterType="PropertyManagerDTO">
SELECT COUNT(t.*) from td_property_manager t RIGHT JOIN td_property_info d
on t.use_id = d.use_id where t.secrets_type=#{secretsType}
AND t.recover_date &gt;= #{minDayTime}
AND t.recover_date &lt;= #{maxDayTime}
and d.destory_state is null
</select>
</mapper> </mapper>
Loading…
Cancel
Save