55 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Learun.Util;
using System.Collections.Generic;
namespace Learun.Application.Scheduler
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2019-08-13 11:16
/// 描 述:任务调度
/// </summary>
public interface Job_ScheduleIBLL
{
#region
/// <summary>
/// 获取页面显示列表数据
/// <summary>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
IEnumerable<Job_ScheduleEntity> GetPageList(Pagination pagination, string queryJson);
/// <summary>
/// 获取数据
/// <summary>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
List<Job_ScheduleEntity> GetList(string queryJson);
/// <summary>
/// 获取Job_Schedule表实体数据
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
Job_ScheduleEntity GetJob_ScheduleEntity(string keyValue);
#endregion
#region
/// <summary>
/// 删除实体数据
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
void DeleteEntity(string keyValue);
/// <summary>
/// 保存实体数据(新增、修改)
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
void SaveEntity(string keyValue, Job_ScheduleEntity entity);
#endregion
}
}