22 lines
446 B
C#
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);
|
|
|
|
}
|
|
}
|