CreateEntityInput.cs 676 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>Magic.Application</example>
  23. public string Position { get; set; }
  24. /// <summary>
  25. ///
  26. /// </summary>
  27. public string ConfigId { get; set; }
  28. }