仓库模块_出库货物记录:init
This commit is contained in:
24
ZR.Service/mes/wms/IService/IWmGoodsOutProductionService.cs
Normal file
24
ZR.Service/mes/wms/IService/IWmGoodsOutProductionService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
using System.Collections.Generic;
|
||||
using ZR.Model.MES.wms;
|
||||
using ZR.Model.MES.wms.Dto;
|
||||
|
||||
namespace ZR.Service.mes.wms.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库货物记录表service接口
|
||||
/// </summary>
|
||||
public interface IWmGoodsOutProductionService : IBaseService<WmGoodsOutProduction>
|
||||
{
|
||||
PagedInfo<WmGoodsOutProductionDto> GetList(WmGoodsOutProductionQueryDto parm);
|
||||
|
||||
WmGoodsOutProduction GetInfo(string Id);
|
||||
|
||||
WmGoodsOutProduction AddWmGoodsOutProduction(WmGoodsOutProduction parm);
|
||||
|
||||
int UpdateWmGoodsOutProduction(WmGoodsOutProduction parm);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -26,5 +26,10 @@ namespace ZR.Service.mes.wms.IService
|
||||
|
||||
(List<WmMaterialQuery_stockQuantityDto>, int) GetmaterialList(WmMaterialQueryDto parm);
|
||||
|
||||
|
||||
List<WmMaterialQuery_print> Queryoutoder_matrials(string shipment_num);
|
||||
|
||||
List<WmOutOrderPlan> Generate_outorderplan(string shipment_num);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user