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.
 
 
 
 
 
 

46 lines
1.3 KiB

  1. using Learun.Util;
  2. using System.Collections.Generic;
  3. namespace Learun.Application.OA.Gantt
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  7. /// Copyright (c) 2013-2017
  8. /// 创建人:陈彬彬
  9. /// 日 期:2018.06.20
  10. /// 描 述:项目计划
  11. /// </summary>
  12. public interface JQueryGanttIBLL
  13. {
  14. #region 获取数据
  15. /// <summary>
  16. /// 获取甘特图数据
  17. /// </summary>
  18. /// <param name="queryJson">关键词</param>
  19. /// <returns></returns>
  20. IEnumerable<JQueryGanttEntity> GetList(string queryJson);
  21. /// <summary>
  22. /// 获取甘特图实体
  23. /// </summary>
  24. /// <param name="keyValue">主键</param>
  25. /// <returns></returns>
  26. JQueryGanttEntity GetEntity(string keyValue);
  27. #endregion
  28. #region 提交数据
  29. /// <summary>
  30. /// 删除
  31. /// </summary>
  32. /// <param name="keyValue">主键</param>
  33. void DeleteEntity(string keyValue);
  34. /// <summary>
  35. /// 保存(新增、修改)
  36. /// </summary>
  37. /// <param name="keyValue">主键值</param>
  38. /// <param name="entity">甘特图实体</param>
  39. /// <returns></returns>
  40. void SaveEntity(string keyValue, JQueryGanttEntity entity);
  41. #endregion
  42. }
  43. }