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.
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; }
|
|
}
|
|
}
|
|
|