仓库管理_客户信息:init
This commit is contained in:
25
ZR.Service/mes/wms/IService/IWmCustomService.cs
Normal file
25
ZR.Service/mes/wms/IService/IWmCustomService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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 IWmCustomService : IBaseService<WmCustom>
|
||||
{
|
||||
PagedInfo<WmCustomDto> GetList(WmCustomQueryDto parm);
|
||||
|
||||
WmCustom GetInfo(int Id);
|
||||
|
||||
WmCustom AddWmCustom(WmCustom parm);
|
||||
|
||||
int UpdateWmCustom(WmCustom parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user