/// <summary>
 /// 得到一个对象实体,从缓存中
 /// </summary>
 public TDTK.PlatForm.MVC4.Model.Sys_BusinType GetModelByCache(string BusinTypeID)
 {
     Sys_BusinType sbt = new Sys_BusinType();
     sbt.BusinTypeID = BusinTypeID;
     string CacheKey = "Sys_BusinTypeModel-" + BusinTypeID;
     object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
     if (objModel == null)
     {
         try
         {
             objModel = dal.GetModel(sbt);
             if (objModel != null)
             {
                 int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
                 Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
             }
         }
         catch { }
     }
     return (TDTK.PlatForm.MVC4.Model.Sys_BusinType)objModel;
 }
 public Sys_BusinType GetModel(Sys_BusinType t)
 {
     return dal.GetModel(t);
 }
 public bool Delete(Sys_BusinType t)
 {
     return dal.Delete(t);
 }
 public bool Update(Sys_BusinType t)
 {
     return dal.Update(t);
 }
 public int Add(Sys_BusinType t)
 {
     return dal.Add(t);
 }
 public bool Exists(Sys_BusinType t)
 {
     return dal.Exists(t);
 }