using System.Collections.Generic; namespace WX.CRM.IBLL.Res { public interface IRES_CUSTOMERUSER_Q { WX.CRM.Model.Entity.RES_CUSTOMERUSER GetModelByUserName(string username); List GetListByUserName(string username); /// /// 获取实体 /// /// /// WX.CRM.Model.Entity.RES_CUSTOMERUSER GetModelByUserNo(decimal userno); List GetModelByResId(string ResId); //根据主客户ID获取所有的用户名信息 List GetListByCustomerId(string CustomerId); bool GetResidBound(string resid); } }