仓库管理:checklog
This commit is contained in:
24
ZR.Service/mes/wms/IService/IWmCheckLogService.cs
Normal file
24
ZR.Service/mes/wms/IService/IWmCheckLogService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using ZR.Model;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using ZR.Model.MES.wms;
|
||||
using ZR.Model.MES.wms.Dto;
|
||||
|
||||
namespace ZR.Service.Business.IBusinessService
|
||||
{
|
||||
/// <summary>
|
||||
/// 盘点记录service接口
|
||||
/// </summary>
|
||||
public interface IWmCheckLogService : IBaseService<WmCheckLog>
|
||||
{
|
||||
PagedInfo<WmCheckLogDto> GetList(WmCheckLogQueryDto parm);
|
||||
|
||||
WmCheckLog GetInfo(int Id);
|
||||
|
||||
WmCheckLog AddWmCheckLog(WmCheckLog parm);
|
||||
|
||||
int UpdateWmCheckLog(WmCheckLog parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user