namespace Admin.NET.Core.Service; public class CreateEntityInput { /// /// 表名 /// /// student public string TableName { get; set; } /// /// 实体名 /// /// Student public string EntityName { get; set; } /// /// 基类名 /// /// AutoIncrementEntity public string BaseClassName { get; set; } /// /// 导出位置 /// /// Web.Application public string Position { get; set; } /// /// 库标识 /// public string ConfigId { get; set; } }