[後端] 修改api錯誤, dbs改用巨蛋
This commit is contained in:
parent
a38a4473dd
commit
693804320f
@ -578,100 +578,103 @@ namespace Backend.Controllers
|
||||
-- OR ct.disaster_system_value != d.device_disaster";
|
||||
}
|
||||
|
||||
string sql_temp = $@"
|
||||
SELECT
|
||||
ct.device_number AS check_temp_device_number,
|
||||
ct.device_system_category_layer3 AS check_temp_device_system_category_layer3,
|
||||
ct.system_category_system_key AS check_temp_device_system_category_layer3_key,
|
||||
ct.disaster_system_value AS check_temp_disaster,
|
||||
ct.disaster_system_key AS check_temp_disaster_key,
|
||||
d.device_number,
|
||||
d.device_system_category_layer3 AS device_system_category_layer3,
|
||||
d.system_key AS device_system_category_layer3_key,
|
||||
d.device_disaster,
|
||||
d.device_disaster_type_text,
|
||||
d.device_coordinate,
|
||||
CASE
|
||||
WHEN ct.device_number = d.device_number
|
||||
THEN 0
|
||||
ELSE 1
|
||||
END AS compare_device_number,
|
||||
CASE
|
||||
WHEN ct.device_system_category_layer3 = d.device_system_category_layer3
|
||||
THEN 0
|
||||
ELSE 1
|
||||
END AS compare_system_category_layer3,
|
||||
CASE
|
||||
WHEN ct.disaster_system_value = d.device_disaster
|
||||
THEN 0
|
||||
ELSE 1
|
||||
END AS compare_device_disaster
|
||||
FROM (
|
||||
SELECT
|
||||
ct.* ,
|
||||
v.system_type AS system_category_system_type,
|
||||
v.system_key AS system_category_system_key,
|
||||
v.system_value AS system_category_system_value,
|
||||
v2.system_type AS disaster_system_type,
|
||||
v2.system_key AS disaster_system_key,
|
||||
v2.system_value AS disaster_system_value
|
||||
FROM device_import_ckeck_temp ct
|
||||
LEFT JOIN variable v ON v.system_type = 'device_system_category_layer3' AND ct.device_system_category_layer3 = v.system_value
|
||||
LEFT JOIN variable v2 ON v2.system_type = 'disaster' AND v2.system_value = ct.device_disaster
|
||||
{{0}}
|
||||
) ct
|
||||
FULL JOIN (
|
||||
SELECT
|
||||
d.* ,
|
||||
v.system_type,
|
||||
v.system_key,
|
||||
v.system_value,
|
||||
(SELECT
|
||||
STRING_AGG( ISNULL(system_value, ' '), ',')
|
||||
FROM device_disaster dd
|
||||
JOIN variable v ON v.deleted = 0 AND v.system_type = 'disaster' AND v.system_value = dd.device_system_value
|
||||
WHERE dd.device_guid = d.device_guid
|
||||
) AS device_disaster,
|
||||
(SELECT
|
||||
STRING_AGG( ISNULL(system_key, ' '), ',')
|
||||
FROM device_disaster dd
|
||||
JOIN variable v ON v.deleted = 0 AND v.system_type = 'disaster' AND v.system_value = dd.device_system_value
|
||||
WHERE dd.device_guid = d.device_guid
|
||||
) AS device_disaster_type_text
|
||||
FROM device d
|
||||
LEFT JOIN variable v ON v.system_type = 'device_system_category_layer3' AND d.device_system_category_layer3 = v.system_value
|
||||
{{1}}
|
||||
AND d.deleted = 0
|
||||
if (!string.IsNullOrEmpty(post.Building_tag) && !string.IsNullOrEmpty(post.System_category) && !string.IsNullOrEmpty(post.System_tag))
|
||||
{
|
||||
string sql_temp = $@"
|
||||
SELECT
|
||||
ct.device_number AS check_temp_device_number,
|
||||
ct.device_system_category_layer3 AS check_temp_device_system_category_layer3,
|
||||
ct.system_category_system_key AS check_temp_device_system_category_layer3_key,
|
||||
ct.disaster_system_value AS check_temp_disaster,
|
||||
ct.disaster_system_key AS check_temp_disaster_key,
|
||||
d.device_number,
|
||||
d.device_system_category_layer3 AS device_system_category_layer3,
|
||||
d.system_key AS device_system_category_layer3_key,
|
||||
d.device_disaster,
|
||||
d.device_disaster_type_text,
|
||||
d.device_coordinate,
|
||||
CASE
|
||||
WHEN ct.device_number = d.device_number
|
||||
THEN 0
|
||||
ELSE 1
|
||||
END AS compare_device_number,
|
||||
CASE
|
||||
WHEN ct.device_system_category_layer3 = d.device_system_category_layer3
|
||||
THEN 0
|
||||
ELSE 1
|
||||
END AS compare_system_category_layer3,
|
||||
CASE
|
||||
WHEN ct.disaster_system_value = d.device_disaster
|
||||
THEN 0
|
||||
ELSE 1
|
||||
END AS compare_device_disaster
|
||||
FROM (
|
||||
SELECT
|
||||
ct.* ,
|
||||
v.system_type AS system_category_system_type,
|
||||
v.system_key AS system_category_system_key,
|
||||
v.system_value AS system_category_system_value,
|
||||
v2.system_type AS disaster_system_type,
|
||||
v2.system_key AS disaster_system_key,
|
||||
v2.system_value AS disaster_system_value
|
||||
FROM device_import_ckeck_temp ct
|
||||
LEFT JOIN variable v ON v.system_type = 'device_system_category_layer3' AND ct.device_system_category_layer3 = v.system_value
|
||||
LEFT JOIN variable v2 ON v2.system_type = 'disaster' AND v2.system_value = ct.device_disaster
|
||||
{{0}}
|
||||
) ct
|
||||
LEFT JOIN (
|
||||
SELECT
|
||||
d.* ,
|
||||
v.system_type,
|
||||
v.system_key,
|
||||
v.system_value,
|
||||
(SELECT
|
||||
GROUP_CONCAT( ifnull(system_value, ' '), ',')
|
||||
FROM device_disaster dd
|
||||
JOIN variable v ON v.deleted = 0 AND v.system_type = 'disaster' AND v.system_value = dd.device_system_value
|
||||
WHERE dd.device_guid = d.device_guid
|
||||
) AS device_disaster,
|
||||
(SELECT
|
||||
GROUP_CONCAT( ifnull(system_key, ' '), ',')
|
||||
FROM device_disaster dd
|
||||
JOIN variable v ON v.deleted = 0 AND v.system_type = 'disaster' AND v.system_value = dd.device_system_value
|
||||
WHERE dd.device_guid = d.device_guid
|
||||
) AS device_disaster_type_text
|
||||
FROM device d
|
||||
LEFT JOIN variable v ON v.system_type = 'device_system_category_layer3' AND d.device_system_category_layer3 = v.system_value
|
||||
{{1}}
|
||||
AND d.deleted = 0
|
||||
|
||||
)d ON ct.device_number = d.device_number
|
||||
{{2}}
|
||||
ORDER BY d.device_number DESC
|
||||
";
|
||||
)d ON ct.device_number = d.device_number
|
||||
{{2}}
|
||||
ORDER BY d.device_number DESC
|
||||
";
|
||||
|
||||
var sql = string.Format(sql_temp, string.Format(sSubTableWhere, "ct"), string.Format(sSubTableWhere, "d"), sWhere);
|
||||
var sql = string.Format(sql_temp, string.Format(sSubTableWhere, "ct"), string.Format(sSubTableWhere, "d"), sWhere);
|
||||
|
||||
var param = new { Device_building_tag = post.Building_tag, Device_system_tag = post.System_tag, Device_system_category_layer3 = post.System_category };
|
||||
var param = new { Device_building_tag = post.Building_tag, Device_system_tag = post.System_tag, Device_system_category_layer3 = post.System_category };
|
||||
|
||||
var deviceCheckTableList = await backendRepository.GetAllAsync<DeviceCheckTable>(sql, param);
|
||||
var deviceCheckTableList = await backendRepository.GetAllAsync<DeviceCheckTable>(sql, param);
|
||||
|
||||
sSubTableWhere = " WHERE {0}.device_building_tag = @Device_building_tag";
|
||||
sSubTableWhere = " WHERE {0}.device_building_tag = @Device_building_tag";
|
||||
|
||||
sWhere = @"WHERE ct.device_number IS NULL AND d.device_number IS NOT NULL
|
||||
-- OR ct.device_system_category_layer3 != d.device_system_category_layer3
|
||||
-- OR ct.disaster_system_value != d.device_disaster";
|
||||
sWhere = @"WHERE ct.device_number IS NULL AND d.device_number IS NOT NULL
|
||||
-- OR ct.device_system_category_layer3 != d.device_system_category_layer3
|
||||
-- OR ct.disaster_system_value != d.device_disaster";
|
||||
|
||||
var sql_abnormal_amount = string.Format(sql_temp, string.Format(sSubTableWhere, "ct"), string.Format(sSubTableWhere, "d") + " AND d.deleted = 0", sWhere);
|
||||
var sql_abnormal_amount = string.Format(sql_temp, string.Format(sSubTableWhere, "ct"), string.Format(sSubTableWhere, "d") + " AND d.deleted = 0", sWhere);
|
||||
|
||||
var abnormal = await backendRepository.GetAllAsync<DeviceCheckTable>(sql_abnormal_amount, param);
|
||||
var abnormal = await backendRepository.GetAllAsync<DeviceCheckTable>(sql_abnormal_amount, param);
|
||||
|
||||
var abnormal_amount = abnormal.Count();
|
||||
var abnormal_amount = abnormal.Count();
|
||||
|
||||
DeviceCheck deviceCheck = new DeviceCheck();
|
||||
deviceCheck.DeviceCheckAmount = abnormal_amount;
|
||||
deviceCheck.DeviceCheckTableList = deviceCheckTableList;
|
||||
DeviceCheck deviceCheck = new DeviceCheck();
|
||||
deviceCheck.DeviceCheckAmount = abnormal_amount;
|
||||
deviceCheck.DeviceCheckTableList = deviceCheckTableList;
|
||||
|
||||
apiResult.Code = "0000";
|
||||
apiResult.Data = deviceCheck;
|
||||
apiResult.Code = "0000";
|
||||
apiResult.Data = deviceCheck;
|
||||
}
|
||||
}
|
||||
catch (Exception exception)
|
||||
{
|
||||
|
@ -18,8 +18,8 @@
|
||||
"Port": "js2LutKe+rdjzdxMPQUrvQ==",
|
||||
//"Database": "VJB2XC+lAtzuHObDGMVOAA==", //30
|
||||
//"Database": "IgYBsgG2VLKKxFb64j7LOA==", //wsp
|
||||
//"Database": "7gWfmZ28HGIJZbxEbK+0yg==", //tpe_dome_dome
|
||||
"Database": "siTUcDaC/g2yGTMFWD72Kg==", //tpe_dome_hotel
|
||||
"Database": "7gWfmZ28HGIJZbxEbK+0yg==", //tpe_dome_dome
|
||||
//"Database": "siTUcDaC/g2yGTMFWD72Kg==", //tpe_dome_hotel
|
||||
"Root": "SzdxEgaJJ7tcTCrUl2zKsA==",
|
||||
"Password": "FVAPxztxpY4gJJKQ/se4bQ=="
|
||||
}
|
||||
@ -57,8 +57,8 @@
|
||||
//"ObixHisBqlQuery": "7C/j7U8PmDqMxpb7f6gMpHFicuOA83OZeuWHBFdi/xpfEIklxyQ/wP75bEKwrdh+fXXgjmpc9cLX9GqbBC7eGw==", //三菱
|
||||
//"ObixHisUrlQuery": "7C/j7U8PmDqMxpb7f6gMpD06cJcRzpVx0+IAssROlE4MlzSDPojSI17+XkQIL9Eu" //三菱
|
||||
|
||||
//"UrlSlot": "e1dUH6340WkFoHPJYq7IYQ==", // 巨蛋棟 D2
|
||||
"UrlSlot": "f9cDBTw5PCfbDTOt4Kwbew==", // 旅館棟 slot:/Arena/H|
|
||||
"UrlSlot": "e1dUH6340WkFoHPJYq7IYQ==", // 巨蛋棟 D2
|
||||
//"UrlSlot": "f9cDBTw5PCfbDTOt4Kwbew==", // 旅館棟 slot:/Arena/H|
|
||||
"ObixQuery": "7C/j7U8PmDqMxpb7f6gMpIDkLYyNwmXoqhx+N1G+fqQxEETrRbFLZfC7Sud5yX24CphfLlSUbfjft7gcP6v+gw==", //巨蛋 http://192.168.0.136:8082/obix/config/Program/ObixQuery/query/
|
||||
"ObixHisBqlQuery": "7C/j7U8PmDqMxpb7f6gMpIDkLYyNwmXoqhx+N1G+fqQxEETrRbFLZfC7Sud5yX24CphfLlSUbfjft7gcP6v+gw==", // 巨蛋 http://192.168.0.136:8082/obix/config/Program/ObixQuery/query/
|
||||
"ObixHisUrlQuery": "7C/j7U8PmDqMxpb7f6gMpEVUZrrjJT0WiTUBn0FzipXfBFsxYAX3plIWBcJ+oZzW", //巨蛋 http://192.168.0.136:8081/obix/histories
|
||||
|
@ -17,7 +17,8 @@
|
||||
"Server": "FYlY+w0XDIz+jmF2rlZWJw==", //0.201
|
||||
"Port": "js2LutKe+rdjzdxMPQUrvQ==",
|
||||
//"Database": "VJB2XC+lAtzuHObDGMVOAA==", //三菱
|
||||
"Database": "IgYBsgG2VLKKxFb64j7LOA==", //wsp
|
||||
//"Database": "IgYBsgG2VLKKxFb64j7LOA==", //wsp
|
||||
"Database": "7gWfmZ28HGIJZbxEbK+0yg==", //tpe_dome_dome
|
||||
"Root": "SzdxEgaJJ7tcTCrUl2zKsA==",
|
||||
"Password": "FVAPxztxpY4gJJKQ/se4bQ=="
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
@ -12,11 +12,14 @@
|
||||
"SignKey": "TaipeiDome123456", //ñ<EFBFBD><EFBFBD>//<EFBFBD>̤<EFBFBD>16<EFBFBD>r<EFBFBD><EFBFBD>
|
||||
"JwtLifeSeconds": 3600
|
||||
},
|
||||
"DBConfig": {
|
||||
"DBConfig": {
|
||||
"MySqlDBConfig": {
|
||||
"Server": "FYlY+w0XDIz+jmF2rlZWJw==", //0.201
|
||||
"Port": "js2LutKe+rdjzdxMPQUrvQ==",
|
||||
"Database": "VJB2XC+lAtzuHObDGMVOAA==", //30
|
||||
//"Database": "VJB2XC+lAtzuHObDGMVOAA==", //30
|
||||
//"Database": "IgYBsgG2VLKKxFb64j7LOA==", //wsp
|
||||
"Database": "7gWfmZ28HGIJZbxEbK+0yg==", //tpe_dome_dome
|
||||
//"Database": "siTUcDaC/g2yGTMFWD72Kg==", //tpe_dome_hotel
|
||||
"Root": "SzdxEgaJJ7tcTCrUl2zKsA==",
|
||||
"Password": "FVAPxztxpY4gJJKQ/se4bQ=="
|
||||
}
|
||||
|
@ -23,7 +23,9 @@
|
||||
"Server": "FYlY+w0XDIz+jmF2rlZWJw==", //0.201
|
||||
"Port": "js2LutKe+rdjzdxMPQUrvQ==",
|
||||
//"Database": "VJB2XC+lAtzuHObDGMVOAA==", //三菱
|
||||
"Database": "IgYBsgG2VLKKxFb64j7LOA==", //wsp
|
||||
//"Database": "IgYBsgG2VLKKxFb64j7LOA==", //wsp
|
||||
"Database": "7gWfmZ28HGIJZbxEbK+0yg==", //tpe_dome_dome
|
||||
//"Database": "siTUcDaC/g2yGTMFWD72Kg==", //tpe_dome_hotel
|
||||
"Root": "SzdxEgaJJ7tcTCrUl2zKsA==",
|
||||
"Password": "FVAPxztxpY4gJJKQ/se4bQ=="
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user