shgx_tz_mom/ZR.Service/mes/wms/IService/IWmGoodsOutProductionService.cs
2024-03-22 09:31:04 +08:00

25 lines
626 B
C#

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<WmGoodsOutRecord>
{
PagedInfo<WmGoodsOutProductionDto> GetList(WmGoodsOutProductionQueryDto parm);
WmGoodsOutRecord GetInfo(string Id);
WmGoodsOutRecord AddWmGoodsOutProduction(WmGoodsOutRecord parm);
int UpdateWmGoodsOutProduction(WmGoodsOutRecord parm);
}
}