mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-15 09:38:29 +00:00
44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
package com.java2nb.novel.entity;
|
|
|
|
import javax.annotation.Generated;
|
|
|
|
public class BookContent {
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long id;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long indexId;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private String content;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getIndexId() {
|
|
return indexId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setIndexId(Long indexId) {
|
|
this.indexId = indexId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setContent(String content) {
|
|
this.content = content == null ? null : content.trim();
|
|
}
|
|
} |