22 lines
492 B
C#
22 lines
492 B
C#
using DOAN.Model.PBL.Dto;
|
|
using DOAN.Model.PBL;
|
|
|
|
namespace DOAN.Service.PBL.IService
|
|
{
|
|
/// <summary>
|
|
/// 料架表service接口
|
|
/// </summary>
|
|
public interface IStoragelocationService : IBaseService<Storagelocation>
|
|
{
|
|
PagedInfo<StoragelocationDto> GetList(StoragelocationQueryDto parm);
|
|
|
|
Storagelocation GetInfo(int Id);
|
|
|
|
|
|
Storagelocation AddStoragelocation(Storagelocation parm);
|
|
int UpdateStoragelocation(Storagelocation parm);
|
|
|
|
|
|
}
|
|
}
|