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.
BookingHeChuan/Myshipping.Application/Service/RulesEngine/Dtos/RulesEngineExcuteResultDeta...

45 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 规则执行结果明细
/// </summary>
public class RulesEngineExcuteResultDetailDto
{
/// <summary>
/// 当前规则是否校验成功 true-成功 false-失败
/// </summary>
public bool IsSuccess { get; set; }
/// <summary>
/// 返回代码
/// </summary>
public string ResultCode { get; set; }
/// <summary>
/// 返回名称
/// </summary>
public string ResultName { get; set; }
/// <summary>
/// 规则提醒类型 Error-错误 Warning-提醒
/// </summary>
public string ErrorType { get; set; }
/// <summary>
/// 规则名称
/// </summary>
public string RuleName { get; set; }
/// <summary>
/// 规则集名称
/// </summary>
public string WFName { get; set; }
}
}