Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IWmCustomService.cs
2024-06-07 11:05:58 +08:00

22 lines
446 B
C#

using ZR.Model;
using ZR.Model.MES.wms;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.mes.wms.IService
{
/// <summary>
/// 客户信息service接口
/// </summary>
public interface IWmCustomService : IBaseService<WmCustom>
{
PagedInfo<WmCustomDto> GetList(WmCustomQueryDto parm);
WmCustom GetInfo(int Id);
WmCustom AddWmCustom(WmCustom parm);
int UpdateWmCustom(WmCustom parm);
}
}