/// <summary>
 /// 得到一个对象实体,从缓存中
 /// </summary>
 public TDTK.PlatForm.MVC4.Model.TT_CollierySupervise GetModelByCache(string CSCode)
 {
     TT_CollierySupervise cs = new TT_CollierySupervise();
     cs.CSCode = CSCode;
     string CacheKey = "TT_CollierySuperviseModel-" + CSCode;
     object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
     if (objModel == null)
     {
         try
         {
             objModel = dal.GetModel(cs);
             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.TT_CollierySupervise)objModel;
 }
 public TT_CollierySupervise GetModel(TT_CollierySupervise t)
 {
     return dal.GetModel(t);
 }
 public bool Delete(TT_CollierySupervise t)
 {
     return dal.Delete(t);
 }
 public bool Update(TT_CollierySupervise t)
 {
     return dal.Update(t);
 }
 public int Add(TT_CollierySupervise t)
 {
     return dal.Add(t);
 }
 public bool Exists(TT_CollierySupervise t)
 {
     return dal.Exists(t);
 }