TGuijiLibraryGive.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.sooka.system.domain;
  2. import com.sooka.common.annotation.Excel;
  3. import com.sooka.common.core.domain.BaseEntity;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. /**
  7. * 还书对象 t_guiji_library_give
  8. *
  9. * @author lei
  10. * @date 2021-10-20
  11. */
  12. public class TGuijiLibraryGive extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 主键ID */
  16. private String id;
  17. /** $column.columnComment */
  18. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  19. private String cdTime;
  20. /** $column.columnComment */
  21. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  22. private String cdBatch;
  23. /** $column.columnComment */
  24. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  25. private String cdOperation;
  26. /** $column.columnComment */
  27. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  28. private String cdSource;
  29. /** 读者证号 */
  30. @Excel(name = "读者证号")
  31. private String cardno;
  32. /** 读者姓名 */
  33. @Excel(name = "读者姓名")
  34. private String name;
  35. /** 图书条码号 */
  36. @Excel(name = "图书条码号")
  37. private String barcode;
  38. /** 书籍题名 */
  39. @Excel(name = "书籍题名")
  40. private String title;
  41. /** 归还时间 */
  42. @Excel(name = "归还时间")
  43. private String operationdate;
  44. public void setId(String id)
  45. {
  46. this.id = id;
  47. }
  48. public String getId()
  49. {
  50. return id;
  51. }
  52. public void setCdTime(String cdTime)
  53. {
  54. this.cdTime = cdTime;
  55. }
  56. public String getCdTime()
  57. {
  58. return cdTime;
  59. }
  60. public void setCdBatch(String cdBatch)
  61. {
  62. this.cdBatch = cdBatch;
  63. }
  64. public String getCdBatch()
  65. {
  66. return cdBatch;
  67. }
  68. public void setCdOperation(String cdOperation)
  69. {
  70. this.cdOperation = cdOperation;
  71. }
  72. public String getCdOperation()
  73. {
  74. return cdOperation;
  75. }
  76. public void setCdSource(String cdSource)
  77. {
  78. this.cdSource = cdSource;
  79. }
  80. public String getCdSource()
  81. {
  82. return cdSource;
  83. }
  84. public void setCardno(String cardno)
  85. {
  86. this.cardno = cardno;
  87. }
  88. public String getCardno()
  89. {
  90. return cardno;
  91. }
  92. public void setName(String name)
  93. {
  94. this.name = name;
  95. }
  96. public String getName()
  97. {
  98. return name;
  99. }
  100. public void setBarcode(String barcode)
  101. {
  102. this.barcode = barcode;
  103. }
  104. public String getBarcode()
  105. {
  106. return barcode;
  107. }
  108. public void setTitle(String title)
  109. {
  110. this.title = title;
  111. }
  112. public String getTitle()
  113. {
  114. return title;
  115. }
  116. public void setOperationdate(String operationdate)
  117. {
  118. this.operationdate = operationdate;
  119. }
  120. public String getOperationdate()
  121. {
  122. return operationdate;
  123. }
  124. @Override
  125. public String toString() {
  126. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  127. .append("id", getId())
  128. .append("createTime", getCreateTime())
  129. .append("cdTime", getCdTime())
  130. .append("cdBatch", getCdBatch())
  131. .append("cdOperation", getCdOperation())
  132. .append("cdSource", getCdSource())
  133. .append("cardno", getCardno())
  134. .append("name", getName())
  135. .append("barcode", getBarcode())
  136. .append("title", getTitle())
  137. .append("operationdate", getOperationdate())
  138. .toString();
  139. }
  140. }