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 System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Web;
| using VueWebApi.Tools;
|
| namespace VueWebApi.DLL.DAL
| {
| public class DeviceManagerDAL
| {
| #region[设备类型查询]
| public static ToMessage DeviceTypeSearch(int startNum, int endNum, string prop, string order)
| {
| throw new NotImplementedException();
| }
| #endregion
|
| #region[设备类型新增]
| public static ToMessage AddUpdateDeviceType(string devicetypecode, string devicetypename, string devicetypedescipt, string usercode)
| {
| throw new NotImplementedException();
| }
| #endregion
|
| #region[设备类型删除]
| public static ToMessage DeleteDeviceType(string devicetypeid)
| {
| throw new NotImplementedException();
| }
| #endregion
|
|
|
| #region [设备清单查询]
| public static ToMessage DeviceMangerSearch(string deviceCode, string deviceName, string status, string workShop, string deviceType, string deviceGroup, int startNum, int endNum, string prop, string order)
| {
| throw new NotImplementedException();
| }
| #endregion
|
| #region[设备清单新增编辑]
| public static ToMessage AddUpdateDeviceManger(string deviceid, string devicecode, string devicename, string devicetype, string devicegroup, string importdate, string workshop, string status, string ratio, string usercode, string operType)
| {
| throw new NotImplementedException();
| }
| #endregion
|
| #region[设备清单删除]
| public static ToMessage DeleteDeviceManger(string deviceid)
| {
| throw new NotImplementedException();
| }
| #endregion
| }
| }
|
|