53 lines
1.4 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 System.Collections.Generic;
namespace Learun.Application.Base.SystemModule
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2018-07-30 14:53
/// 描 述logo设置
/// </summary>
public interface LogoImgIBLL
{
#region
/// <summary>
/// 获取列表数据
/// <summary>
/// <returns></returns>
IEnumerable<LogoImgEntity> GetList(string queryJson);
/// <summary>
/// 获取实体数据
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
LogoImgEntity GetEntity(string keyValue);
/// <summary>
/// 获取logo图片
/// </summary>
/// <param name="code">编码</param>
void GetImg(string code);
#endregion
#region
/// <summary>
/// 删除实体数据
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
void DeleteEntity(string keyValue);
/// <summary>
/// 保存实体数据(新增、修改)
/// <param name="entity">实体</param>
/// <summary>
/// <returns></returns>
void SaveEntity(LogoImgEntity entity);
#endregion
}
}