|
@ -19,7 +19,10 @@ async function overSpeedList (ctx) { |
|
|
|
|
|
|
|
|
const overSpeedProcessedCount = await models.Overspeed.count({ |
|
|
const overSpeedProcessedCount = await models.Overspeed.count({ |
|
|
where: { |
|
|
where: { |
|
|
processingTime: { $ne: null } |
|
|
$and: [ |
|
|
|
|
|
{ processingTime: { $ne: null } }, |
|
|
|
|
|
{ processingTime: { $ne: '' } } |
|
|
|
|
|
] |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|