TableSql.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.boman.domain;
  2. /**
  3. * @author tjf
  4. * @Date: 2021/04/14/10:56
  5. */
  6. public class TableSql extends BaseEntity {
  7. private Long id;
  8. private Long tableId;
  9. private String createSql;
  10. private String createLog;
  11. private String isDel;
  12. public Long getId() {
  13. return id;
  14. }
  15. public void setId(Long id) {
  16. this.id = id;
  17. }
  18. public Long getTableId() {
  19. return tableId;
  20. }
  21. public void setTableId(Long tableId) {
  22. this.tableId = tableId;
  23. }
  24. public String getCreateSql() {
  25. return createSql;
  26. }
  27. public void setCreateSql(String createSql) {
  28. this.createSql = createSql;
  29. }
  30. public String getCreateLog() {
  31. return createLog;
  32. }
  33. public void setCreateLog(String createLog) {
  34. this.createLog = createLog;
  35. }
  36. public String getIsDel() {
  37. return isDel;
  38. }
  39. public void setIsDel(String isDel) {
  40. this.isDel = isDel;
  41. }
  42. @Override
  43. public String toString() {
  44. return "TableSql{" +
  45. "id=" + id +
  46. ", tableId=" + tableId +
  47. ", createSql='" + createSql + '\'' +
  48. ", createLog='" + createLog + '\'' +
  49. ", isDel='" + isDel + '\'' +
  50. '}';
  51. }
  52. }