using Newtonsoft.Json; namespace Vo.Admin { /// /// 列表 /// public class GetDatabaseFieldListVo { /// /// ID /// public int id { get; set; } /// /// 数据库 /// public int databaseId { get; set; } /// /// 数据表 /// public int tableId { get; set; } /// /// 选项卡 /// public int tabId { get; set; } /// /// 字段标题 /// public string fieldTitle { get; set; } /// /// 字段名 /// public string fieldName { get; set; } /// /// 字段类型 /// public string fieldType { get; set; } /// /// 字段长度 /// public string fieldLength { get; set; } } }