Files
shanghaigangxiangtuzhuangMES/server/ZR.Service/mes/wms/IService/IWmMaterialService.cs
xiaowei.song 127c428a9e 油漆
2024-06-06 13:19:24 +08:00

30 lines
666 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 IWmMaterialService : IBaseService<WmMaterial>
{
PagedInfo<WmMaterialDto> GetList(WmMaterialQueryDto parm);
WmMaterial GetInfo(string Id);
WmMaterial AddWmMaterial(WmMaterial parm);
int UpdateWmMaterial(WmMaterial parm);
WmGoodsNowProduction GetInfoByPatchCode(string patchCode);
(int,int) ExcelADD(List<WmMaterial> materials);
}
}