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.
 
 
 
 
 
 

59 lines
1.9 KiB

  1. using Learun.Util;
  2. using System.Data;
  3. using System.Collections.Generic;
  4. namespace Learun.Application.TwoDevelopment.AssetManagementSystem
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  8. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2019-09-11 10:23
  11. /// 描 述:资产调拨
  12. /// </summary>
  13. public interface AllocationIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表数据
  18. /// <summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<Ass_AllocationEntity> GetPageList(Pagination pagination, string queryJson);
  22. /// <summary>
  23. /// 获取Ass_Allocation表实体数据
  24. /// <param name="keyValue">主键</param>
  25. /// <summary>
  26. /// <returns></returns>
  27. Ass_AllocationEntity GetAss_AllocationEntity(string keyValue);
  28. /// <summary>
  29. /// 获取主表实体数据
  30. /// <param name="processId">流程实例ID</param>
  31. /// <summary>
  32. /// <returns></returns>
  33. Ass_AllocationEntity GetEntityByProcessId(string processId);
  34. #endregion
  35. #region 提交数据
  36. /// <summary>
  37. /// 删除实体数据
  38. /// <param name="keyValue">主键</param>
  39. /// <summary>
  40. /// <returns></returns>
  41. void DeleteEntity(string keyValue);
  42. /// <summary>
  43. /// 保存实体数据(新增、修改)
  44. /// <param name="keyValue">主键</param>
  45. /// <summary>
  46. /// <returns></returns>
  47. void SaveEntity(string keyValue, Ass_AllocationEntity entity);
  48. #endregion
  49. void ModifyStatusByProcessId(int i, string processId);
  50. void ModifTimeByProcessId(string processId);
  51. void ModifyStatus(string keyValue, int pastatus, string processId);
  52. }
  53. }