21 lines
775 B
C#
21 lines
775 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_CUSTOMERUSER_Q
|
|
{
|
|
WX.CRM.Model.Entity.RES_CUSTOMERUSER GetModelByUserName(string username);
|
|
List<WX.CRM.Model.Entity.RES_CUSTOMERUSER> GetListByUserName(string username);
|
|
/// <summary>
|
|
/// 获取实体
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
WX.CRM.Model.Entity.RES_CUSTOMERUSER GetModelByUserNo(decimal userno);
|
|
List<WX.CRM.Model.Entity.RES_CUSTOMERUSER> GetModelByResId(string ResId);
|
|
//根据主客户ID获取所有的用户名信息
|
|
List<WX.CRM.Model.Entity.SOFT_USER> GetListByCustomerId(string CustomerId);
|
|
bool GetResidBound(string resid);
|
|
}
|
|
}
|