[BE] 更新 Niagara 資料同步,同步電梯系統
fic_system 的電梯系統 tag 要改成 B
This commit is contained in:
parent
01d0ad6db1
commit
685a4fcf59
@ -52,7 +52,8 @@ namespace Backend.Controllers
|
||||
catch (Exception exception)
|
||||
{
|
||||
apiResult.Code = "9999";
|
||||
Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message);
|
||||
// Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message);
|
||||
Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message + Environment.NewLine + exception.StackTrace);
|
||||
}
|
||||
|
||||
return apiResult;
|
||||
|
@ -76,7 +76,8 @@ namespace Backend.Controllers
|
||||
{
|
||||
apiResult.Code = "9999";
|
||||
apiResult.Msg = "【" + controllerName + "/" + actionName + "】" + exception.Message;
|
||||
Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message);
|
||||
Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message + Environment.NewLine + exception.StackTrace);
|
||||
// Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message);
|
||||
}
|
||||
|
||||
//return apiResult;
|
||||
|
@ -143,12 +143,12 @@ namespace Repository.BackendRepository.Implement
|
||||
{
|
||||
sb.Append($@" -- tag 第二碼為小類(除了安全系統之外)
|
||||
update import_niagara_tag set device_name_tag = device_system_tag
|
||||
where (device_system_tag <> 'S' and device_system_tag <> 'CWB');
|
||||
where (device_system_tag <> 'S' and device_system_tag <> 'CWB' and device_system_tag <> 'B');
|
||||
|
||||
update import_niagara_tag a join dic_system b
|
||||
on a.device_name_tag COLLATE utf8mb4_general_ci = b.s2_code
|
||||
set device_system_tag = b.s1_code -- tag 第二碼為小類(除了安全系統之外)
|
||||
where (device_system_tag <> 'S' and device_system_tag <> 'CWB'); -- 安全系統 第二段大類 第四段小類");
|
||||
where (device_system_tag <> 'S' and device_system_tag <> 'CWB' and device_system_tag <> 'B'); -- 安全系統 第二段大類 第四段小類");
|
||||
await conn.ExecuteAsync(sb.ToString());
|
||||
}
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ namespace Repository.BaseRepository.Implement
|
||||
}
|
||||
catch (Exception exception)
|
||||
{
|
||||
throw exception;
|
||||
throw;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
@ -162,7 +162,8 @@ namespace Repository.BaseRepository.Implement
|
||||
}
|
||||
catch (Exception exception)
|
||||
{
|
||||
throw exception;
|
||||
// throw exception;
|
||||
throw;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user