唐召明
authored
|
1
2
3
4
|
using Hh.Mes.Common.Request;
using Hh.Mes.POJO.Entity;
using Hh.Mes.Service.Equipment;
using Hh.Mes.Service.SystemAuth;
|
赖素文
authored
|
5
|
using Microsoft.AspNetCore.Http;
|
唐召明
authored
|
6
7
|
using Microsoft.AspNetCore.Mvc;
using System;
|
赖素文
authored
|
8
|
using System.Collections.Generic;
|
唐召明
authored
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using WebMvc.Aop;
namespace WebMvc.Areas.equipment.Controllers
{
/// <summary>
/// 设备保养提醒
/// </summary>
[Area("Equipment")]
public class BusEquipmentMaintainNoticeController : BaseController
{
private readonly BusEquipmentMaintainNoticeService _service;
public BusEquipmentMaintainNoticeController(IAuth authUtil, BusEquipmentMaintainNoticeService service) : base(authUtil)
{
_service = service;
|
赖素文
authored
|
24
|
if (_loginInfo != null) _service.sysWebUser = _loginInfo;
|
唐召明
authored
|
25
26
27
28
29
30
31
32
33
34
35
|
}
#region 视图功能
/// <summary>
/// 默认视图Action
/// </summary>
/// <returns></returns>
[Authenticate]
[ServiceFilter(typeof(OperLogFilter))]
public ActionResult Index()
{
|
赖素文
authored
|
36
|
if (_loginInfo == null) return Redirect("/Login/Index");
|
唐召明
authored
|
37
38
|
return View();
}
|
赖素文
authored
|
39
40
41
42
43
44
45
46
47
48
49
|
/// <summary>
/// 设备保养概述
/// </summary>
/// <returns></returns>
[Authenticate]
[ServiceFilter(typeof(OperLogFilter))]
public ActionResult MaintenanceOverview()
{
return View();
}
|
唐召明
authored
|
50
51
52
53
54
55
56
57
58
|
#endregion
#region 数据操作
/// <summary>
/// 加载及分页查询
/// </summary>
/// <param name="pageRequest">表单请求信息</param>
/// <returns></returns>
[HttpPost]
|
唐召明
authored
|
59
|
public string Load(PageReq pageRequest, string projectCode, bus_equipment_maintain_record_top busEquipmentMaintainRecordTop)
|
唐召明
authored
|
60
|
{
|
唐召明
authored
|
61
|
return Serialize(_service.Load(pageRequest, projectCode, busEquipmentMaintainRecordTop));
|
唐召明
authored
|
62
63
64
|
}
[HttpPost]
|
唐召明
authored
|
65
|
public string LoadDesc(PageReq pageRequest, bus_equipment_maintain_record_head busEquipmentMaintainRecordHead)
|
唐召明
authored
|
66
|
{
|
唐召明
authored
|
67
|
return Serialize(_service.LoadDesc(pageRequest, busEquipmentMaintainRecordHead));
|
唐召明
authored
|
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
}
/// <summary>
/// 新增数据
/// </summary>
/// <param name="entity">新增实例</param>
/// <returns></returns>
[HttpPost]
[ServiceFilter(typeof(OperLogFilter))]
public string Ins(daq_equipment_alarm_record entity)
{
return Serialize(_service.Ins(entity));
}
/// <summary>
/// 删除数据
/// </summary>
/// <param name="ids"></param>
/// <returns></returns>
[HttpPost]
[ServiceFilter(typeof(OperLogFilter))]
|
唐召明
authored
|
89
|
public string DelByIds(Guid[] ids)
|
唐召明
authored
|
90
91
92
93
94
95
96
97
98
99
|
{
return Serialize(_service.DelByIds(ids));
}
/// <summary>
/// 保养确认
/// </summary>
/// <returns></returns>
[HttpPost]
[ServiceFilter(typeof(OperLogFilter))]
|
赖素文
authored
|
100
|
public string Import(bus_equipment_maintain_record_detail detail, List<IFormFile> excelfile)
|
唐召明
authored
|
101
|
{
|
赖素文
authored
|
102
|
return Serialize(_service.MaintainHandle(detail, excelfile));
|
唐召明
authored
|
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
}
#endregion
#region 导出数据
/// <summary>
/// 导出数据
/// </summary>
/// <param name="entity">请求条件实例</param>
/// <returns></returns>
[HttpPost]
public string Export(base_equipment entity)
{
return Serialize(_service.ExportData(entity));
}
#endregion
#region 自定义方法
[HttpGet]
public string GetTreeList()
{
var data = _service.GetTreeList();
return Serialize(data);
}
#endregion
}
}
|