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.
33 lines
724 B
33 lines
724 B
namespace Admin.NET.Core.Service;
|
|
|
|
public class CreateEntityInput
|
|
{
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
/// <example>student</example>
|
|
public string TableName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实体名
|
|
/// </summary>
|
|
/// <example>Student</example>
|
|
public string EntityName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 基类名
|
|
/// </summary>
|
|
/// <example>AutoIncrementEntity</example>
|
|
public string BaseClassName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 导出位置
|
|
/// </summary>
|
|
/// <example>Web.Application</example>
|
|
public string Position { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库标识
|
|
/// </summary>
|
|
public string ConfigId { get; set; }
|
|
}
|