50 lines
2.0 KiB
C#
50 lines
2.0 KiB
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 string OldDbColumnName { 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 bool IsTreeKey { get; set; }
|
|||
|
public bool IsEnableUpdateVersionValidation { get; set; }
|
|||
|
public object SqlParameterDbType { get; set; }
|
|||
|
public string EntityName { get; set; }
|
|||
|
public string DbTableName { get; set; }
|
|||
|
public bool IsIgnore { get; set; }
|
|||
|
public string DataType { get; set; }
|
|||
|
public int DecimalDigits { get; set; }
|
|||
|
public string OracleSequenceName { get; set; }
|
|||
|
public bool IsOnlyIgnoreInsert { get; set; }
|
|||
|
public bool IsOnlyIgnoreUpdate { get; set; }
|
|||
|
public bool IsTranscoding { get; set; }
|
|||
|
public string SerializeDateTimeFormat { get; set; }
|
|||
|
public bool IsJson { get; set; }
|
|||
|
public bool NoSerialize { get; set; }
|
|||
|
public string[] IndexGroupNameList { get; set; }
|
|||
|
public string[] UIndexGroupNameList { get; set; }
|
|||
|
public bool IsArray { get; set; }
|
|||
|
public Type UnderType { get; set; }
|
|||
|
public Navigate Navigat { get; set; }
|
|||
|
public int CreateTableFieldSort { get; set; }
|
|||
|
public object SqlParameterSize { get; set; }
|
|||
|
public string InsertSql { get; set; }
|
|||
|
public bool InsertServerTime { get; set; }
|
|||
|
public bool UpdateServerTime { get; set; }
|
|||
|
public string UpdateSql { get; set; }
|
|||
|
}
|
|||
|
}
|