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