17 lines
409 B
C#
17 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_ALIVE : IRepository<WX_ALIVE>
|
|
{
|
|
/// <summary>
|
|
/// 返回大于条件时间的 微信号
|
|
/// </summary>
|
|
/// <param name="lasttime"></param>
|
|
/// <returns></returns>
|
|
List<String> GetWx_AliveByLastTime(DateTime lasttime);
|
|
}
|
|
}
|