Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IWmMaterialService.cs

30 lines
666 B
C#
Raw Normal View History

2024-03-17 14:53:16 +08:00
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);
2024-03-23 14:31:50 +08:00
WmGoodsNowProduction GetInfoByPatchCode(string patchCode);
2024-04-15 18:25:01 +08:00
(int,int) ExcelADD(List<WmMaterial> materials);
2024-03-17 14:53:16 +08:00
}
}