TG.WXCRM.V4/IBLL/RedisBL/IRES_CUSTOMER_REDIS.cs

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);
}
}