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.
66 lines
795 B
C#
66 lines
795 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
public class DbColumnInfoInput
|
|
{
|
|
public string TableName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string DbColumnName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DataType
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int Length
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string ColumnDescription
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int IsNullable
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int IsIdentity
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int IsPrimarykey
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int DecimalDigits
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
|
|
}
|