wiki评论和空间

This commit is contained in:
暮光:城中城
2019-03-07 20:53:13 +08:00
parent c37586d596
commit 73a88fb7d1
11 changed files with 213 additions and 66 deletions

View File

@@ -1,9 +1,10 @@
package com.zyplayer.doc.data.repository.manage.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import java.util.Date;
/**
* <p>
@@ -11,7 +12,7 @@ import java.io.Serializable;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-24
* @since 2019-03-07
*/
public class WikiSpace implements Serializable {
@@ -36,7 +37,7 @@ public class WikiSpace implements Serializable {
/**
* 描述
*/
private String explain;
private String spaceExplain;
/**
* 创建人ID
@@ -74,12 +75,12 @@ public class WikiSpace implements Serializable {
public void setType(Integer type) {
this.type = type;
}
public String getExplain() {
return explain;
public String getSpaceExplain() {
return spaceExplain;
}
public void setExplain(String explain) {
this.explain = explain;
public void setSpaceExplain(String spaceExplain) {
this.spaceExplain = spaceExplain;
}
public Long getCreateUserId() {
return createUserId;
@@ -109,7 +110,7 @@ public class WikiSpace implements Serializable {
"id=" + id +
", name=" + name +
", type=" + type +
", explain=" + explain +
", spaceExplain=" + spaceExplain +
", createUserId=" + createUserId +
", createUserName=" + createUserName +
", createTime=" + createTime +

View File

@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-24
* @since 2019-03-07
*/
public interface WikiSpaceMapper extends BaseMapper<WikiSpace> {

View File

@@ -19,7 +19,7 @@ public class CodeGenerator {
final String moduleName = "manage";
// final String[] tableName = { "zyplayer_storage", "auth_info", "user_auth", "user_info" };
// final String[] tableName = { "wiki_space", "wiki_page", "wiki_page_content", "wiki_page_file", "wiki_page_comment", "wiki_page_zan" };
final String[] tableName = { "wiki_page_file" };
final String[] tableName = { "wiki_space" };
// 代码生成器
AutoGenerator mpg = new AutoGenerator();

View File

@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-24
* @since 2019-03-07
*/
public interface WikiSpaceService extends IService<WikiSpace> {

View File

@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-24
* @since 2019-03-07
*/
@Service
public class WikiSpaceServiceImpl extends ServiceImpl<WikiSpaceMapper, WikiSpace> implements WikiSpaceService {