You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace Myshipping.Application
{
/// <summary>
/// 规则执行结果
/// </summary>
public class RulesEngineExcuteResultDto
{
/// <summary>
/// 是否成功 true=成功 false=失败
/// </summary>
public bool succ { get ; set ; } = false ;
/// <summary>
/// 状态 0-成功
/// </summary>
public int status { get ; set ; } = 0 ;
/// <summary>
/// 返回消息
/// </summary>
public string msg { get ; set ; }
/// <summary>
/// 返回校验明细
/// </summary>
public List < RulesEngineExcuteResultDetailDto > rows { get ; set ; }
}
public class RemoteRulesEngineExcuteResultDto
{
/// <summary>
/// 是否成功 true-成功 false-失败
/// </summary>
public bool IsSuccess { get ; set ; }
/// <summary>
/// 请求报文HEAD的GID
/// </summary>
public string RequestId { get ; set ; }
/// <summary>
/// 执行时间 格式( yyyy-MM-dd HH:mm:ss)
/// </summary>
public string ExcuteDate { get ; set ; }
/// <summary>
/// 规则详情
/// </summary>
public List < RulesEngineExcuteResultDetailDto > DetailList { get ; set ; }
}
}