using System; using System.Collections.Generic; using CB.Entity; namespace CB.Interface.Infrastructure { public interface ITVUserService : IRepository { /// /// 根据MAC地址获取用户信息 /// /// /// TVUserInfo GetTVUserByMac(string macAddr); } }