39 lines
1.4 KiB
C#
39 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Soft
|
|
{
|
|
public interface ISOFT_CUSTOMER_Q
|
|
{
|
|
WX.CRM.Model.Entity.SOFT_CUSTOMER GetModel(decimal id);
|
|
|
|
/// <summary>
|
|
/// 获取软件客户列表
|
|
/// </summary>
|
|
/// <param name="pager"></param>
|
|
/// <param name="softName">用户名</param>
|
|
/// <param name="saleId"></param>
|
|
/// <param name="resId">客户ID</param>
|
|
/// <param name="userStatus">用户状态</param>
|
|
/// <param name="optime1">权限开通日期1</param>
|
|
/// <param name="optime2">权限开通日期2</param>
|
|
/// <param name="endtime1">权限截止日期1</param>
|
|
/// <param name="endtime2">权限截止日期2</param>
|
|
/// <param name="groupId">组别</param>
|
|
/// <param name="inneruserId">员工</param>
|
|
/// <returns></returns>
|
|
List<WX.CRM.Model.Entity.SOFT_CUSTOMER_Extend> GetList(ref Pager pager, string softName, decimal? saleId, string resId, decimal userStatus, DateTime? optime1, DateTime? optime2, DateTime? endtime1, DateTime? endtime2, string groupId, decimal? inneruserId);
|
|
|
|
List<WX.CRM.Model.Entity.SOFT_CUSTOMER> GetListBySoftName(string[] softName);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
int SoftCustomerCount();
|
|
|
|
List<MemoDto> getServiceMemo(string[] resid);
|
|
}
|
|
}
|