| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System;
- using System.Collections.Generic;
- namespace RoadFlow.Data.Interface
- {
- public interface IDictionary
- {
- /// <summary>
- /// 新增
- /// </summary>
- int Add(RoadFlow.Data.Model.Dictionary model);
- /// <summary>
- /// 更新
- /// </summary>
- int Update(RoadFlow.Data.Model.Dictionary model);
- /// <summary>
- /// 查询所有记录
- /// </summary>
- List<RoadFlow.Data.Model.Dictionary> GetAll();
- /// <summary>
- /// 查询单条记录
- /// </summary>
- Model.Dictionary Get(Guid id);
- /// <summary>
- /// 删除
- /// </summary>
- int Delete(Guid id);
- /// <summary>
- /// 查询记录条数
- /// </summary>
- long GetCount();
- /// <summary>
- /// 查询根记录
- /// </summary>
- RoadFlow.Data.Model.Dictionary GetRoot();
- /// <summary>
- /// 查询下级记录
- /// </summary>
- List<RoadFlow.Data.Model.Dictionary> GetChilds(Guid id);
- /// <summary>
- /// 查询下级记录
- /// </summary>
- List<RoadFlow.Data.Model.Dictionary> GetChilds(string code);
- /// <summary>
- /// 查询上级记录
- /// </summary>
- RoadFlow.Data.Model.Dictionary GetParent(Guid id);
- /// <summary>
- /// 是否包含下级记录
- /// </summary>
- bool HasChilds(Guid id);
- /// <summary>
- /// 得到最大排序
- /// </summary>
- int GetMaxSort(Guid id);
- /// <summary>
- /// 更新排序
- /// </summary>
- int UpdateSort(Guid id, int sort);
- /// <summary>
- /// 根据代码查询一条记录
- /// </summary>
- RoadFlow.Data.Model.Dictionary GetByCode(string code);
- }
- }
|