CreateEntityInput.cs 900 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. namespace Admin.NET.Core.Service;
  5. public class CreateEntityInput
  6. {
  7. /// <summary>
  8. /// 表名
  9. /// </summary>
  10. /// <example>student</example>
  11. public string TableName { get; set; }
  12. /// <summary>
  13. /// 实体名
  14. /// </summary>
  15. /// <example>Student</example>
  16. public string EntityName { get; set; }
  17. /// <summary>
  18. /// 基类名
  19. /// </summary>
  20. /// <example>AutoIncrementEntity</example>
  21. public string BaseClassName { get; set; }
  22. /// <summary>
  23. /// 导出位置
  24. /// </summary>
  25. /// <example>Web.Application</example>
  26. public string Position { get; set; }
  27. /// <summary>
  28. /// 库标识
  29. /// </summary>
  30. public string ConfigId { get; set; }
  31. }