17 lines
458 B
C#
17 lines
458 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_ALIVE_SERVICE : IRepository<WX_ALIVE_SERVICE>
|
|
{
|
|
List<string> GetVersions();
|
|
|
|
List<string> GetPhoneModes();
|
|
|
|
List<WX_ALIVE_SERVICE_Extend> GetList(ref Pager pager, string version, string phoneMode, string groupId, decimal? eid, string alias, decimal? zaixian);
|
|
}
|
|
}
|