using Learun.Util; using System.Collections.Generic; namespace Learun.Application.OA.Gantt { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2017 /// 创建人:陈彬彬 /// 日 期:2018.06.20 /// 描 述:项目计划 /// public interface JQueryGanttIBLL { #region 获取数据 /// /// 获取甘特图数据 /// /// 关键词 /// IEnumerable GetList(string queryJson); /// /// 获取甘特图实体 /// /// 主键 /// JQueryGanttEntity GetEntity(string keyValue); #endregion #region 提交数据 /// /// 删除 /// /// 主键 void DeleteEntity(string keyValue); /// /// 保存(新增、修改) /// /// 主键值 /// 甘特图实体 /// void SaveEntity(string keyValue, JQueryGanttEntity entity); #endregion } }