|
@@ -30,6 +30,12 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
private Integer quantVersion;
|
|
|
|
|
|
|
|
|
+ * 数学更新简介
|
|
|
+ */
|
|
|
+ @Column(name = "`quant_description`")
|
|
|
+ private String quantDescription;
|
|
|
+
|
|
|
+
|
|
|
* 阅读
|
|
|
*/
|
|
|
@Column(name = "`rc`")
|
|
@@ -42,6 +48,12 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
private Integer rcVersion;
|
|
|
|
|
|
|
|
|
+ * 阅读更新简介
|
|
|
+ */
|
|
|
+ @Column(name = "`rc_description`")
|
|
|
+ private String rcDescription;
|
|
|
+
|
|
|
+
|
|
|
* 综合推理
|
|
|
*/
|
|
|
@Column(name = "`ir`")
|
|
@@ -53,6 +65,12 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
@Column(name = "`ir_version`")
|
|
|
private Integer irVersion;
|
|
|
|
|
|
+
|
|
|
+ * 综合推理更新简介
|
|
|
+ */
|
|
|
+ @Column(name = "`ir_description`")
|
|
|
+ private String irDescription;
|
|
|
+
|
|
|
@Column(name = "`create_time`")
|
|
|
private Date createTime;
|
|
|
|
|
@@ -145,6 +163,24 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 获取数学更新简介
|
|
|
+ *
|
|
|
+ * @return quant_description - 数学更新简介
|
|
|
+ */
|
|
|
+ public String getQuantDescription() {
|
|
|
+ return quantDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 设置数学更新简介
|
|
|
+ *
|
|
|
+ * @param quantDescription 数学更新简介
|
|
|
+ */
|
|
|
+ public void setQuantDescription(String quantDescription) {
|
|
|
+ this.quantDescription = quantDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* 获取阅读
|
|
|
*
|
|
|
* @return rc - 阅读
|
|
@@ -181,6 +217,24 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 获取阅读更新简介
|
|
|
+ *
|
|
|
+ * @return rc_description - 阅读更新简介
|
|
|
+ */
|
|
|
+ public String getRcDescription() {
|
|
|
+ return rcDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 设置阅读更新简介
|
|
|
+ *
|
|
|
+ * @param rcDescription 阅读更新简介
|
|
|
+ */
|
|
|
+ public void setRcDescription(String rcDescription) {
|
|
|
+ this.rcDescription = rcDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* 获取综合推理
|
|
|
*
|
|
|
* @return ir - 综合推理
|
|
@@ -217,6 +271,24 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 获取综合推理更新简介
|
|
|
+ *
|
|
|
+ * @return ir_description - 综合推理更新简介
|
|
|
+ */
|
|
|
+ public String getIrDescription() {
|
|
|
+ return irDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 设置综合推理更新简介
|
|
|
+ *
|
|
|
+ * @param irDescription 综合推理更新简介
|
|
|
+ */
|
|
|
+ public void setIrDescription(String irDescription) {
|
|
|
+ this.irDescription = irDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* @return create_time
|
|
|
*/
|
|
|
public Date getCreateTime() {
|
|
@@ -294,10 +366,13 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
sb.append(", libraryId=").append(libraryId);
|
|
|
sb.append(", quant=").append(quant);
|
|
|
sb.append(", quantVersion=").append(quantVersion);
|
|
|
+ sb.append(", quantDescription=").append(quantDescription);
|
|
|
sb.append(", rc=").append(rc);
|
|
|
sb.append(", rcVersion=").append(rcVersion);
|
|
|
+ sb.append(", rcDescription=").append(rcDescription);
|
|
|
sb.append(", ir=").append(ir);
|
|
|
sb.append(", irVersion=").append(irVersion);
|
|
|
+ sb.append(", irDescription=").append(irDescription);
|
|
|
sb.append(", createTime=").append(createTime);
|
|
|
sb.append(", quantContent=").append(quantContent);
|
|
|
sb.append(", rcContent=").append(rcContent);
|
|
@@ -356,6 +431,16 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 设置数学更新简介
|
|
|
+ *
|
|
|
+ * @param quantDescription 数学更新简介
|
|
|
+ */
|
|
|
+ public Builder quantDescription(String quantDescription) {
|
|
|
+ obj.setQuantDescription(quantDescription);
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* 设置数学版本
|
|
|
*
|
|
|
* @param quantVersion 数学版本
|
|
@@ -386,6 +471,16 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 设置阅读更新简介
|
|
|
+ *
|
|
|
+ * @param rcDescription 阅读更新简介
|
|
|
+ */
|
|
|
+ public Builder rcDescription(String rcDescription) {
|
|
|
+ obj.setRcDescription(rcDescription);
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* 设置阅读版本
|
|
|
*
|
|
|
* @param rcVersion 阅读版本
|
|
@@ -416,6 +511,16 @@ public class TextbookLibraryHistory implements Serializable {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 设置综合推理更新简介
|
|
|
+ *
|
|
|
+ * @param irDescription 综合推理更新简介
|
|
|
+ */
|
|
|
+ public Builder irDescription(String irDescription) {
|
|
|
+ obj.setIrDescription(irDescription);
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* 设置综合推理版本
|
|
|
*
|
|
|
* @param irVersion 综合推理版本
|