using System.Collections.Generic; using SuperMap.RealEstate.ServiceModel; using SuperMap.RealEstate.ServiceModel.Logging; using SuperMap.RealEstate.MobileServicePlatform.Model; namespace SuperMap.RealEstate.MobileServicePlatform { /// /// 服务接口 T_RTMESSAGE 部分 /// partial interface IService { #region RTMESSAGE_Insert 插入数据 /// /// 插入数据 /// /// RTMESSAGE类 /// 日志信息 /// RTMESSAGE类 [System.ServiceModel.OperationContract] RTMESSAGE RTMESSAGE_Insert(RTMESSAGE rTMESSAGE, ServiceLoggingInfo loggingInfo); #endregion #region RTMESSAGE_Update 更新数据 /// /// 更新数据 /// /// RTMESSAGE类 /// 日志信息 /// 更新RTMESSAGE类是否成功 [System.ServiceModel.OperationContract] bool RTMESSAGE_Update(RTMESSAGE rTMESSAGE, ServiceLoggingInfo loggingInfo); #endregion #region RTMESSAGE_Delete 删除数据 /// /// 删除数据 /// /// 主键字段 /// 日志信息 [System.ServiceModel.OperationContract] void RTMESSAGE_Delete(System.Int32 rTMESSAGE_ID, ServiceLoggingInfo loggingInfo); #endregion #region RTMESSAGE_Search 查询数据 /// /// 查询数据 /// /// 参数集合 /// 日志信息 /// RTMESSAGE类 [System.ServiceModel.OperationContract] RTMESSAGE RTMESSAGE_Search(List parameters, ServiceLoggingInfo loggingInfo); #endregion } }