zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDevicePartsStorageLocationsService.cs

28 lines
808 B
C#
Raw Normal View History

2024-12-30 10:13:11 +08:00
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);
2024-12-30 15:25:40 +08:00
string[] QueryDevicePartsStorageLocationsLocationCode(string query);
2024-12-30 10:13:11 +08:00
DevicePartsStorageLocations GetInfo(int LocationId);
DevicePartsStorageLocations AddDevicePartsStorageLocations(DevicePartsStorageLocations parm);
int UpdateDevicePartsStorageLocations(DevicePartsStorageLocations parm);
}
}