shgx_tz_mom/ZR.Service/mes/wms/IService/IWmGoodsNowProductionService.cs
2024-03-23 14:31:58 +08:00

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);
}
}