MdmInfoTable.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package com.datau.da.entity.remotedb;
  2. import io.swagger.annotations.ApiModelProperty;
  3. /**
  4. *
  5. * @ClassName: MdmInfoTable
  6. * @Description: 数据表信息表实体类
  7. * @author: Zhao You Kai
  8. * @date: Feb 19, 2019 4:20:22 PM
  9. */
  10. public class MdmInfoTable {
  11. @ApiModelProperty("ID")
  12. private String id;
  13. @ApiModelProperty("表名称")
  14. private String tableName;
  15. @ApiModelProperty("表注释(中文名)")
  16. private String tableComment;
  17. @ApiModelProperty("所属数据库ID")
  18. private String databaseId;
  19. @ApiModelProperty("创建人ID")
  20. private String updateUserId;
  21. @ApiModelProperty("创建人名称")
  22. private String updateUserName;
  23. @ApiModelProperty("更新时间")
  24. private String updateTime;
  25. @ApiModelProperty("编码")
  26. private Integer charset;
  27. @ApiModelProperty("hive建表行分割符")
  28. private Integer hiveSeparatorRow;
  29. @ApiModelProperty("hive建表列分割符")
  30. private Integer hiveSeparatorColumn;
  31. @ApiModelProperty("hive建表分区")
  32. private String hivePartition;
  33. @ApiModelProperty("表描述")
  34. private String tableDesc;
  35. @ApiModelProperty("所属库名")
  36. private String databaseName;
  37. @ApiModelProperty("所属库资源名")
  38. private String resourceName;
  39. public String getUpdateUserName() {
  40. return updateUserName;
  41. }
  42. public void setUpdateUserName(String updateUserName) {
  43. this.updateUserName = updateUserName;
  44. }
  45. public String getDatabaseName() {
  46. return databaseName;
  47. }
  48. public void setDatabaseName(String databaseName) {
  49. this.databaseName = databaseName;
  50. }
  51. public String getResourceName() {
  52. return resourceName;
  53. }
  54. public void setResourceName(String resourceName) {
  55. this.resourceName = resourceName;
  56. }
  57. public String getTableDesc() {
  58. return tableDesc;
  59. }
  60. public void setTableDesc(String tableDesc) {
  61. this.tableDesc = tableDesc;
  62. }
  63. public Integer getHiveSeparatorRow() {
  64. return hiveSeparatorRow;
  65. }
  66. public void setHiveSeparatorRow(Integer hiveSeparatorRow) {
  67. this.hiveSeparatorRow = hiveSeparatorRow;
  68. }
  69. public Integer getHiveSeparatorColumn() {
  70. return hiveSeparatorColumn;
  71. }
  72. public void setHiveSeparatorColumn(Integer hiveSeparatorColumn) {
  73. this.hiveSeparatorColumn = hiveSeparatorColumn;
  74. }
  75. public String getHivePartition() {
  76. return hivePartition;
  77. }
  78. public void setHivePartition(String hivePartition) {
  79. this.hivePartition = hivePartition;
  80. }
  81. public String getUpdateUserId() {
  82. return updateUserId;
  83. }
  84. public void setUpdateUserId(String updateUserId) {
  85. this.updateUserId = updateUserId;
  86. }
  87. public Integer getCharset() {
  88. return charset;
  89. }
  90. public void setCharset(Integer charset) {
  91. this.charset = charset;
  92. }
  93. public String getId() {
  94. return id;
  95. }
  96. public void setId(String id) {
  97. this.id = id;
  98. }
  99. public String getTableName() {
  100. return tableName;
  101. }
  102. public void setTableName(String tableName) {
  103. this.tableName = tableName;
  104. }
  105. public String getTableComment() {
  106. return tableComment;
  107. }
  108. public void setTableComment(String tableComment) {
  109. this.tableComment = tableComment;
  110. }
  111. public String getDatabaseId() {
  112. return databaseId;
  113. }
  114. public void setDatabaseId(String databaseId) {
  115. this.databaseId = databaseId;
  116. }
  117. public String getUpdateTime() {
  118. return updateTime;
  119. }
  120. public void setUpdateTime(String updateTime) {
  121. this.updateTime = updateTime;
  122. }
  123. }