58 lines
1.5 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.Base.SystemModule
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2019-01-02 12:03
/// 描 述:图片保存
/// </summary>
public interface ImgIBLL
{
#region
/// <summary>
/// 获取页面显示列表数据
/// <summary>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
IEnumerable<ImgEntity> GetPageList(Pagination pagination, string queryJson);
/// <summary>
/// 获取LR_Base_Img表实体数据
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
ImgEntity GetEntity(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, ImgEntity entity);
#endregion
/// <summary>
/// 获取图片
/// </summary>
/// <param name="keyValue">主键</param>
void GetImg(string keyValue);
}
}