仓库模块_出库货物记录:init

This commit is contained in:
qianhao.xu
2024-03-22 08:54:11 +08:00
parent dac58ddb77
commit 3e7cd97255
4 changed files with 132 additions and 18 deletions

View File

@@ -10,15 +10,15 @@ namespace ZR.Service.mes.wms.IService
/// <summary>
/// 出库货物记录表service接口
/// </summary>
public interface IWmGoodsOutProductionService : IBaseService<WmGoodsOutProduction>
public interface IWmGoodsOutProductionService : IBaseService<WmGoodsOutRecord>
{
PagedInfo<WmGoodsOutProductionDto> GetList(WmGoodsOutProductionQueryDto parm);
WmGoodsOutProduction GetInfo(string Id);
WmGoodsOutRecord GetInfo(string Id);
WmGoodsOutProduction AddWmGoodsOutProduction(WmGoodsOutProduction parm);
WmGoodsOutRecord AddWmGoodsOutProduction(WmGoodsOutRecord parm);
int UpdateWmGoodsOutProduction(WmGoodsOutProduction parm);
int UpdateWmGoodsOutProduction(WmGoodsOutRecord parm);
}
}