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