using HighWayIot.Log4net; using HighWayIot.Repository.domain; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.service.Impl { public class SysUserInfoServiceImpl : ISysUserInfoService { private LogHelper log = LogHelper.Instance; Repository _repository => new Repository("mysql"); public List GetUserInfos() { try { List deviceInfo = _repository.GetList(); return deviceInfo; }catch (Exception ex) { log.Error("用户信息获取异常", ex); return null; } } } }