[后台]fix:修复书签类注释错误,application.yml sql日志打印问题

This commit is contained in:
fanxb 2019-12-15 23:02:04 +08:00
parent 098fdc8f64
commit a9aa3614b4
2 changed files with 10 additions and 4 deletions

View File

@ -14,12 +14,18 @@ import java.util.List;
*/
@Data
public class Bookmark {
/**
* 书签类别
*/
public static final int BOOKMARK_TYPE = 0;
/**
* 文件夹类别
*/
public static final int FOLDER_TYPE = 1;
private Integer bookmarkId;
/**
* 类型0文件夹1具体的书签
* 类型1文件夹0具体的书签
*/
private Integer type;
private Integer userId;

View File

@ -55,7 +55,7 @@ spring:
starttls:
enable: true
mybatis:
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
# classpath后面加*,值里面的*才起作用