/// <summary> /// 更新一条数据 /// </summary> public override bool Update(Model.article_category model) { if (dal.Update(model)) { SetCache(model); return(true); } return(false); }
/// <summary> /// 更新一条数据 /// </summary> public bool Update(Model.article_category model) { return(dal.Update(model)); }