wiki接口

This commit is contained in:
暮光:城中城
2019-02-27 21:38:25 +08:00
parent b930103058
commit b14e2c5989
9 changed files with 225 additions and 31 deletions

View File

@@ -1,17 +1,18 @@
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>
*
*
* </p>
*
* @author 暮光:城中城
* @since 2019-02-26
* @since 2019-02-27
*/
public class WikiPage implements Serializable {
@@ -38,6 +39,11 @@ public class WikiPage implements Serializable {
*/
private Long parentId;
/**
* 节点类型 0=有子节点 1=终节点
*/
private Integer nodeType;
/**
* 创建人ID
*/
@@ -91,6 +97,13 @@ public class WikiPage implements Serializable {
public void setParentId(Long parentId) {
this.parentId = parentId;
}
public Integer getNodeType() {
return nodeType;
}
public void setNodeType(Integer nodeType) {
this.nodeType = nodeType;
}
public Long getCreateUid() {
return createUid;
}
@@ -134,6 +147,7 @@ public class WikiPage implements Serializable {
", spaceId=" + spaceId +
", name=" + name +
", parentId=" + parentId +
", nodeType=" + nodeType +
", createUid=" + createUid +
", createTime=" + createTime +
", updateUid=" + updateUid +

View File

@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-26
* @since 2019-02-27
*/
public interface WikiPageMapper extends BaseMapper<WikiPage> {

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", "wiki_page_comment" };
final String[] tableName = { "wiki_page" };
// 代码生成器
AutoGenerator mpg = new AutoGenerator();

View File

@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-26
* @since 2019-02-27
*/
public interface WikiPageService extends IService<WikiPage> {

View File

@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
* </p>
*
* @author 暮光:城中城
* @since 2019-02-26
* @since 2019-02-27
*/
@Service
public class WikiPageServiceImpl extends ServiceImpl<WikiPageMapper, WikiPage> implements WikiPageService {