You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using Aucma.Scada.Model.domain;
|
|
using Aucma.Scada.Model.dto;
|
|
using HighWayIot.Config;
|
|
using HighWayIot.Log4net;
|
|
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 BaseTeamMembersServiceImpl : IBaseTeamMembersServices
|
|
{
|
|
Repository<BaseTeamMembers> _repository => new Repository<BaseTeamMembers>("mes");
|
|
private LogHelper logHelper = LogHelper.Instance;
|
|
private AppConfig appConfig = AppConfig.Instance;
|
|
|
|
/// <summary>
|
|
/// 查询班组
|
|
/// </summary>
|
|
public List<BaseTeamMembers> getTeam()
|
|
{
|
|
try
|
|
{
|
|
|
|
List<BaseTeamMembers> list = null;
|
|
list = _repository.AsQueryable().Where(d => d.ProductLineCode == appConfig.ProductlineCode && d.TeamCode.Contains(appConfig.TeamConfig)).ToList();
|
|
|
|
return list;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|