25 lines
524 B
C#
25 lines
524 B
C#
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);
|
|
|
|
}
|
|
}
|