using Autofac;
|
using Rhea.Common;
|
using Rhea.Common.Interface;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
|
namespace Tiger.IBusiness
|
{
|
public interface IMesPositionCache : ITigerCache
|
{
|
public List<MES_POSITION> Positions { get; set; }
|
public MES_POSITION this[string code] { get; }
|
|
}
|
}
|