/// <summary> /// 删除 /// </summary> /// <returns>是否成功</returns> public override void Delete() { if (!m_Loaded) { throw new AppException("尚未初始化"); } bool result = (WeekSum.Delete(WeekSumId) == 1); //更新缓存 if (result && CachedEntityCommander.IsTypeRegistered(typeof(WeekSumInfo))) { ResetCache(); } if (!result) { throw new AppException("删除失败,数据可能被删除"); } }
//删除周总结 public static void DelWeekSum(int weeksumid) { WeekSum.Delete(weeksumid); }