zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDevicePartsStorageLocationsService.cs
2024-12-30 15:25:40 +08:00

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