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 { /// /// 客户信息service接口 /// public interface IWmCustomService : IBaseService { PagedInfo GetList(WmCustomQueryDto parm); WmCustom GetInfo(int Id); WmCustom AddWmCustom(WmCustom parm); int UpdateWmCustom(WmCustom parm); } }