|  | @@ -130,9 +130,10 @@ public class IotAlarmRuleServiceImpl extends ServiceImpl<IotAlarmRuleMapper, Iot
 | 
	
		
			
				|  |  |      public IotInitAlarmRuleVo getAlarmRuleData(Long ruleId) throws Exception {
 | 
	
		
			
				|  |  |          IotInitAlarmRuleVo ruleVo = getAddInitAlarmRuleData();
 | 
	
		
			
				|  |  |          IotAlarmRule appAlarmRule = this.baseMapper.selectById(ruleId);
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | +        final SysOrg sysOrg = orgService.selectOrgById(appAlarmRule.getOrgId(), SecurityConstants.INNER);
 | 
	
		
			
				|  |  |          IotAlarmRuleEditVo ruleEditVo = new IotAlarmRuleEditVo();
 | 
	
		
			
				|  |  |          BeanHelper.copyProperties(ruleEditVo, appAlarmRule);
 | 
	
		
			
				|  |  | +        appAlarmRule.setOrgName(sysOrg.getShortName());
 | 
	
		
			
				|  |  |          ruleVo.setIotAlarmRule(appAlarmRule);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          List<IotAlarmRuleExpress> appAlarmRuleExpressList = iotAlarmRuleExpressService.list(new LambdaQueryWrapper<IotAlarmRuleExpress>().eq(IotAlarmRuleExpress::getRuleId, ruleId));
 |