22 lines
449 B
C#
22 lines
449 B
C#
|
|
using DOAN.Model.BZFM.Dto;
|
||
|
|
using DOAN.Model.BZFM;
|
||
|
|
|
||
|
|
namespace DOAN.Service.BZFM.IBZFMService
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 库位表service接口
|
||
|
|
/// </summary>
|
||
|
|
public interface IMmLocationService : IBaseService<MmLocation>
|
||
|
|
{
|
||
|
|
PagedInfo<MmLocationDto> GetList(MmLocationQueryDto parm);
|
||
|
|
|
||
|
|
MmLocation GetInfo(int Id);
|
||
|
|
|
||
|
|
|
||
|
|
MmLocation AddMmLocation(MmLocation parm);
|
||
|
|
int UpdateMmLocation(MmLocation parm);
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|