using Autofac;
|
using Rhea.Common;
|
using Rhea.Common.Interface;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Text.RegularExpressions;
|
using System.Threading;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
|
namespace Tiger.IBusiness
|
{
|
public interface ISysParamCache : ITigerCache
|
{
|
public List<SYS_PARAMGROUP> Groups { get; set; }
|
public List<SYS_PARAM> Params { get; set; }
|
public SYS_PARAM this[string code, string group = null] { get; }
|
}
|
}
|