28 lines
808 B
C#
28 lines
808 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.dev.Dto;
|
|
using DOAN.Model.MES.dev;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.MES.dev.IService
|
|
{
|
|
/// <summary>
|
|
/// 备品备件库位service接口
|
|
/// </summary>
|
|
public interface IDevicePartsStorageLocationsService : IBaseService<DevicePartsStorageLocations>
|
|
{
|
|
PagedInfo<DevicePartsStorageLocationsDto> GetList(DevicePartsStorageLocationsQueryDto parm);
|
|
|
|
|
|
string[] QueryDevicePartsStorageLocationsLocationCode(string query);
|
|
|
|
DevicePartsStorageLocations GetInfo(int LocationId);
|
|
|
|
DevicePartsStorageLocations AddDevicePartsStorageLocations(DevicePartsStorageLocations parm);
|
|
|
|
int UpdateDevicePartsStorageLocations(DevicePartsStorageLocations parm);
|
|
|
|
}
|
|
}
|