LocationNumMonitorApp.cs
1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using Infrastructure;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using WebRepository;
namespace WebApp
{
/// <summary>
/// 在线用户记录
/// </summary>
class LocationNumData {
public int EmptyNum;
public int EmptyConNum;
public int SomeNum;
public int LockNum;
}
public partial class LocationNumMonitorApp
{
private IUnitWork _unitWork;
public LocationNumMonitorApp(IUnitWork unitWork)
{
_unitWork = unitWork;
}
public TableData GetLocations(string type)
{
var result = new TableData();
result.code = 200;
var data = new LocationNumData();
try
{
data.EmptyNum = _unitWork.Find<Location>(n => n.Type == type && n.Status == "empty").Count();
data.EmptyConNum = _unitWork.Find<Location>(n => n.Type == type && n.Status == "emptycontainer").Count();
data.SomeNum = _unitWork.Find<Location>(n => n.Type == type && n.Status == "some").Count();
data.LockNum = _unitWork.Find<Location>(n => n.Type == type && n.Status == "lock").Count();
result.data = data;
}
catch (Exception ex)
{
result.code = 300;
result.msg = ex.Message;
}
return result;
}
}
}