30 lines
584 B
30 lines
584 B
using System;
|
|
using System.Runtime.Serialization;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.Entity
|
|
{
|
|
/// <summary>
|
|
/// 行错误信息
|
|
/// </summary>
|
|
public class RowError
|
|
{
|
|
public RowError(int key, string value)
|
|
{
|
|
Key = key;
|
|
Value = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 行号
|
|
/// </summary>
|
|
public int Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// 错误信息
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
}
|
|
}
|
|
|