using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 规则执行结果
///
public class RulesEngineExcuteResultDto
{
///
/// 是否成功 true=成功 false=失败
///
public bool succ { get; set; } = false;
///
/// 状态 0-成功
///
public int status { get; set; } = 0;
///
/// 返回消息
///
public string msg { get; set; }
///
/// 返回校验明细
///
public List rows { get; set; }
}
public class RemoteRulesEngineExcuteResultDto
{
///
/// 是否成功 true-成功 false-失败
///
public bool IsSuccess { get; set; }
///
/// 请求报文HEAD的GID
///
public string RequestId { get; set; }
///
/// 执行时间 格式(yyyy-MM-dd HH:mm:ss)
///
public string ExcuteDate { get; set; }
///
/// 规则详情
///
public List DetailList { get; set; }
}
}