仓库-仓库日志功能代码提交

This commit is contained in:
赵正易
2024-04-18 10:57:53 +08:00
parent c918e0734b
commit 15f6103c0a
5 changed files with 327 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using ZR.Model;
using ZR.Model.Dto;
using ZR.Model.MES.wms;
using System.Collections.Generic;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.mes.wms.IService
{
/// <summary>
/// 仓库操作日志service接口
/// </summary>
public interface IWmGoodsChangeLogService : IBaseService<WmGoodsChangeLog>
{
PagedInfo<WmGoodsChangeLogDto> GetList(WmGoodsChangeLogQueryDto parm);
WmGoodsChangeLog GetInfo(int Id);
WmGoodsChangeLog AddWmGoodsChangeLog(WmGoodsChangeLog parm);
int UpdateWmGoodsChangeLog(WmGoodsChangeLog parm);
}
}