mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-01 19:03:58 +08:00
26 lines
787 B
C#
26 lines
787 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class EntityColumnInfo
|
|
{
|
|
public PropertyInfo PropertyInfo { get; set; }
|
|
public string PropertyName { get; set; }
|
|
public string DbColumnName { get; set; }
|
|
public int Length { get; set; }
|
|
public string ColumnDescription { get; set; }
|
|
public string DefaultValue { get; set; }
|
|
public bool IsNullable { get; set; }
|
|
public bool IsIdentity { get; set; }
|
|
public bool IsPrimarykey { get; set; }
|
|
public string EntityName { get; set; }
|
|
public string DbTableName { get; set; }
|
|
public bool IsIgnore { get; set; }
|
|
}
|
|
}
|