TableSql.java 1.3 KB

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