| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Linq;
- namespace RoadFlow.Platform
- {
- public class WorkFlowButtons
- {
- private RoadFlow.Data.Interface.IWorkFlowButtons dataWorkFlowButtons;
- public WorkFlowButtons()
- {
- this.dataWorkFlowButtons = Data.Factory.Factory.GetWorkFlowButtons();
- }
- /// <summary>
- /// 新增
- /// </summary>
- public int Add(RoadFlow.Data.Model.WorkFlowButtons model)
- {
- return dataWorkFlowButtons.Add(model);
- }
- /// <summary>
- /// 更新
- /// </summary>
- public int Update(RoadFlow.Data.Model.WorkFlowButtons model)
- {
- return dataWorkFlowButtons.Update(model);
- }
- /// <summary>
- /// 查询所有记录
- /// </summary>
- /// <param name="fromCache">是否从缓存获取</param>
- /// <returns></returns>
- public List<RoadFlow.Data.Model.WorkFlowButtons> GetAll(bool fromCache=false)
- {
- if (fromCache)
- {
- string key = RoadFlow.Utility.Keys.CacheKeys.WorkFlowButtons.ToString();
- object obj = RoadFlow.Cache.IO.Opation.Get(key);
- if (obj != null && obj is List<RoadFlow.Data.Model.WorkFlowButtons>)
- {
- return obj as List<RoadFlow.Data.Model.WorkFlowButtons>;
- }
- else
- {
- var list = dataWorkFlowButtons.GetAll();
- RoadFlow.Cache.IO.Opation.Set(key, list);
- return list;
- }
- }
- else
- {
- return dataWorkFlowButtons.GetAll();
- }
- }
- /// <summary>
- /// 查询单条记录
- /// </summary>
- public RoadFlow.Data.Model.WorkFlowButtons Get(Guid id, bool fromCache=false)
- {
- if (fromCache)
- {
- var all = GetAll(true);
- var button = all.Find(p => p.ID == id);
- return button == null ? dataWorkFlowButtons.Get(id) : button;
- }
- else
- {
- return dataWorkFlowButtons.Get(id);
- }
- }
- /// <summary>
- /// 删除
- /// </summary>
- public int Delete(Guid id)
- {
- return dataWorkFlowButtons.Delete(id);
- }
- /// <summary>
- /// 查询记录条数
- /// </summary>
- public long GetCount()
- {
- return dataWorkFlowButtons.GetCount();
- }
- /// <summary>
- /// 清除缓存
- /// </summary>
- public void ClearCache()
- {
- string key = RoadFlow.Utility.Keys.CacheKeys.WorkFlowButtons.ToString();
- RoadFlow.Cache.IO.Opation.Remove(key);
- }
- /// <summary>
- /// 查询最大排序
- /// </summary>
- public int GetMaxSort()
- {
- return dataWorkFlowButtons.GetMaxSort();
- }
-
- }
- }
|