using System.Collections.Generic;
namespace NPP.SmartSchedue.Api.Contracts.Services.Integration.Output
{
///
/// 操作结果输出
///
public class WorkOrderOperationResult
{
///
/// 操作是否成功
///
public bool IsSuccess { get; set; }
///
/// 操作消息
///
public string Message { get; set; } = string.Empty;
///
/// 影响的整合记录ID
///
public long? AffectedIntegrationRecordId { get; set; }
///
/// 操作详情数据
///
public object Data { get; set; }
///
/// 错误详情(操作失败时)
///
public List ErrorDetails { get; set; } = new List();
}
}