9 lines
258 B
C#
9 lines
258 B
C#
|
|
namespace DouyinApi.Model.Systems.DataBase;
|
|||
|
|
|
|||
|
|
public class EditColumnInput
|
|||
|
|
{
|
|||
|
|
public string ConfigId { get; set; }
|
|||
|
|
public string TableName { get; set; }
|
|||
|
|
public string DbColumnName { get; set; }
|
|||
|
|
public string ColumnDescription { get; set; }
|
|||
|
|
}
|