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 GetList(string[] resids, int IsTran = 1); bool AddRedis(RES_CUSTOMER entity); } }