You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.0 KiB
84 lines
2.0 KiB
9 months ago
|
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>
|
||
|
/// 根据父ID查询一条记录
|
||
|
/// </summary>
|
||
|
RoadFlow.Data.Model.Dictionary GetRoot(Guid id);
|
||
|
|
||
|
/// <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);
|
||
|
}
|
||
|
}
|