Admin.net框架
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.

46 lines
923 B

5 days ago
namespace Admin.NET.Core.Service;
public class DbColumnInput
{
public string ConfigId { get; set; }
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; }
}
public class UpdateDbColumnInput
{
public string ConfigId { get; set; }
public string TableName { get; set; }
public string ColumnName { get; set; }
public string OldColumnName { get; set; }
public string Description { get; set; }
}
public class DeleteDbColumnInput
{
public string ConfigId { get; set; }
public string TableName { get; set; }
public string DbColumnName { get; set; }
}