Blame view

WebApp/Apps/monitor/STKMonitorApp.cs 1.19 KB
霍尔 authored
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
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>

    public partial class STKMonitorApp
    {
        private IUnitWork _unitWork;

        public STKMonitorApp(IUnitWork unitWork)
        {
            _unitWork = unitWork;
        }

        public TableData GetRowApp(int Roadway)
        {
            TableData tab = new TableData();
            try
            {
                var list = (from location in _unitWork.Find<Location>(null)
                           where location.Roadway == Roadway
                            group location by new { location.Row ,location.Roadway} into loc
                           select new { loc.Key.Row, loc.Key.Roadway}).ToList();
                tab.data = list;
                tab.code = 200;
            }
            catch (Exception ex)
            {
                tab.code = 300;
                tab.msg = ex.Message;
            }
            return tab;

        }

    }
}