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 { /// /// 盘点记录service接口 /// public interface IWmCheckLogService : IBaseService { PagedInfo GetList(WmCheckLogQueryDto parm); WmCheckLog GetInfo(int Id); WmCheckLog AddWmCheckLog(WmCheckLog parm); int UpdateWmCheckLog(WmCheckLog parm); } }