仓库管理:checklog

This commit is contained in:
qianhao.xu
2024-03-26 15:21:21 +08:00
parent 6386aef7cf
commit e620e3d8b9
5 changed files with 356 additions and 0 deletions

View 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);
}
}