26 lines
650 B
C#
26 lines
650 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 IWmGoodsNowProductionService : IBaseService<WmGoodsNowProduction>
|
|
{
|
|
PagedInfo<WmGoodsNowProductionDto> GetList(WmGoodsNowProductionQueryDto parm);
|
|
|
|
WmGoodsNowProduction GetInfo(string Id);
|
|
|
|
WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction parm);
|
|
|
|
int UpdateWmGoodsNowProduction(WmGoodsNowProduction parm);
|
|
|
|
}
|
|
}
|