You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
1.2 KiB
C#
107 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
public class DbColumnInfoOutput
|
|
{
|
|
public string TableName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int TableId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DbColumnName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string PropertyName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DataType
|
|
{
|
|
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 object Value
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int DecimalDigits
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int Scale
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool IsArray
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
internal bool IsJson
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|