58 lines
2.0 KiB
C#
58 lines
2.0 KiB
C#
using System.Collections.Generic;
|
|
using SuperMap.RealEstate.ServiceModel;
|
|
using SuperMap.RealEstate.ServiceModel.Logging;
|
|
using SuperMap.RealEstate.MainTenance.Storage.Model;
|
|
|
|
namespace SuperMap.RealEstate.MainTenance.Storage
|
|
{
|
|
/// <summary>
|
|
/// 服务接口 T_MATERIAL 部分
|
|
/// </summary>
|
|
partial interface IService
|
|
{
|
|
#region MATERIAL_Insert 插入数据
|
|
/// <summary>
|
|
/// 插入数据
|
|
/// </summary>
|
|
/// <param name="mATERIAL">MATERIAL类</param>
|
|
/// <param name="loggingInfo">日志信息</param>
|
|
/// <returns>MATERIAL类</returns>
|
|
[System.ServiceModel.OperationContract]
|
|
MATERIAL MATERIAL_Insert(MATERIAL mATERIAL, ServiceLoggingInfo loggingInfo);
|
|
#endregion
|
|
|
|
#region MATERIAL_Update 更新数据
|
|
/// <summary>
|
|
/// 更新数据
|
|
/// </summary>
|
|
/// <param name="mATERIAL">MATERIAL类</param>
|
|
/// <param name="loggingInfo">日志信息</param>
|
|
/// <returns>更新MATERIAL类是否成功</returns>
|
|
[System.ServiceModel.OperationContract]
|
|
bool MATERIAL_Update(MATERIAL mATERIAL, ServiceLoggingInfo loggingInfo);
|
|
#endregion
|
|
|
|
#region MATERIAL_Delete 删除数据
|
|
/// <summary>
|
|
/// 删除数据
|
|
/// </summary>
|
|
/// <param name="mATERIAL_ID">主键字段</param>
|
|
/// <param name="loggingInfo">日志信息</param>
|
|
[System.ServiceModel.OperationContract]
|
|
void MATERIAL_Delete(System.Int32 mATERIAL_ID, ServiceLoggingInfo loggingInfo);
|
|
#endregion
|
|
|
|
#region MATERIAL_Search 查询数据
|
|
/// <summary>
|
|
/// 查询数据
|
|
/// </summary>
|
|
/// <param name="parameters">参数集合</param>
|
|
/// <param name="loggingInfo">日志信息</param>
|
|
/// <returns>MATERIAL类</returns>
|
|
[System.ServiceModel.OperationContract]
|
|
MATERIAL MATERIAL_Search(List<SearchParameter> parameters, ServiceLoggingInfo loggingInfo);
|
|
#endregion
|
|
|
|
}
|
|
}
|