55 lines
1.7 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.Data;
using System.Collections.Generic;
namespace Learun.Application.TwoDevelopment.ZZDT_EC
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2022-08-23 17:31
/// 描 述:命名规则,与对象类型和属性都有关联
/// </summary>
public interface ec_objecttypenamingconvIBLL
{
#region
/// <summary>
/// 获取列表数据
/// <summary>
/// <returns></returns>
IEnumerable<ec_objecttypenamingconvEntity> GetList( string queryJson );
/// <summary>
/// 获取列表分页数据
/// <param name="pagination">分页参数</param>
/// <summary>
/// <returns></returns>
IEnumerable<ec_objecttypenamingconvEntity> GetPageList(Pagination pagination, string queryJson);
/// <summary>
/// 获取实体数据
/// <param name="keyValue">主键</param>
/// <summary>
/// <returns></returns>
ec_objecttypenamingconvEntity GetEntity(string keyValue,string ProjectId);
#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, ec_objecttypenamingconvEntity entity,string ProjectId);
#endregion
}
}