我有一个对象列表,例如 Notification 有 3 个列表 -areaWise
和. 我需要通过组合所有 3 个列表,根据最大百分比对 Notification 对象列表进行排序。sensorWise
regionWise
下面是我的通知对象:
{
"notificationId": 26,
"areaWise": [],
"sensorWise": [
{
"id": 3,
"threshold": 1,
"headCount": 113,
"pecentage": 11200
},
{
"id": 4,
"threshold": 1,
"headCount": 108,
"pecentage": 10700
},
{
"id": 5,
"threshold": 1,
"headCount": 108,
"pecentage": 10700
},
{
"id": 7,
"threshold": 1,
"headCount": 91,
"pecentage": 9000
}
],
"regionWise": []
},