25 lines
626 B
C#
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);
|
|
|
|
}
|
|
}
|