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
540 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Apewer.Source
{
/// <summary>列信息。</summary>
[Serializable]
public sealed class ColumnInfo
{
/// <summary>字段。</summary>
public string Name { get; set; }
/// <summary>类型。</summary>
public string Type { get; set; }
/// <summary>长度。</summary>
public int Length { get; set; }
/// <summary>是主键。</summary>
public int IsKey { get; set; }
}
}