CreateEntityInput.cs 724 B

123456789101112131415161718192021222324252627282930313233
  1. namespace Admin.NET.Core.Service;
  2. public class CreateEntityInput
  3. {
  4. /// <summary>
  5. /// 表名
  6. /// </summary>
  7. /// <example>student</example>
  8. public string TableName { get; set; }
  9. /// <summary>
  10. /// 实体名
  11. /// </summary>
  12. /// <example>Student</example>
  13. public string EntityName { get; set; }
  14. /// <summary>
  15. /// 基类名
  16. /// </summary>
  17. /// <example>AutoIncrementEntity</example>
  18. public string BaseClassName { get; set; }
  19. /// <summary>
  20. /// 导出位置
  21. /// </summary>
  22. /// <example>Web.Application</example>
  23. public string Position { get; set; }
  24. /// <summary>
  25. /// 库标识
  26. /// </summary>
  27. public string ConfigId { get; set; }
  28. }