22 lines
589 B
C#
22 lines
589 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_CUSTOMEREXTEND_Q
|
|
{
|
|
/// <summary>
|
|
/// 获取多个列表
|
|
/// </summary>
|
|
/// <param name="resid"></param>
|
|
/// <returns></returns>
|
|
List<RES_CUSTOMEREXTEND> GetList_CustomerExt(string resid);
|
|
/// <summary>
|
|
/// 获取客户扩展的单个实例
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
RES_CUSTOMEREXTEND GetModel_CustomerExt(decimal id);
|
|
}
|
|
}
|