123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using CB.Entity;
- namespace CB.Interface.Infrastructure
- {
- public interface ITVUserService : IRepository<TVUserInfo>
- {
- /// <summary>
- /// 根据MAC地址获取用户信息
- /// </summary>
- /// <param name="macAddr"></param>
- /// <returns></returns>
- TVUserInfo GetTVUserByMac(string macAddr);
- }
- }
|