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 } }