You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
632 B
27 lines
632 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.FJC.TRACING.DAInterface
|
|
{
|
|
/// <summary>
|
|
/// 数据校验结果
|
|
/// </summary>
|
|
public class ValidateResult
|
|
{
|
|
public ValidateResult(bool passed, string message)
|
|
{
|
|
this.Passed = passed;
|
|
this.Message = message;
|
|
}
|
|
/// <summary>
|
|
/// 校验通过
|
|
/// </summary>
|
|
public bool Passed { get; private set; }
|
|
/// <summary>
|
|
/// 检验消息
|
|
/// </summary>
|
|
public string Message { get; private set; }
|
|
}
|
|
}
|
|
|