14 lines
326 B
C#
14 lines
326 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.RedisBL
|
|
{
|
|
public interface IRES_CUSTOMER_REDIS
|
|
{
|
|
RES_CUSTOMER GetInfo(string resid, int IsTran = 1);
|
|
List<RES_CUSTOMER> GetList(string[] resids, int IsTran = 1);
|
|
bool AddRedis(RES_CUSTOMER entity);
|
|
|
|
}
|
|
}
|