mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-04 00:16:39 +00:00
feat: 手机端阅读历史页面适配
This commit is contained in:
@ -124,6 +124,14 @@ public class PageController extends BaseController {
|
||||
return ThreadLocalUtil.getTemplateDir() + "user/favorites";
|
||||
}
|
||||
|
||||
/**
|
||||
* 阅读历史页
|
||||
*/
|
||||
@RequestMapping("user/read_history.html")
|
||||
public String readHistory() {
|
||||
return ThreadLocalUtil.getTemplateDir() + "user/read_history";
|
||||
}
|
||||
|
||||
/**
|
||||
* 充值页
|
||||
*/
|
||||
|
@ -19,9 +19,19 @@ public class BookReadHistoryVO extends UserReadHistory {
|
||||
private String lastIndexName;
|
||||
private String bookName;
|
||||
|
||||
@JsonFormat(timezone = "GMT+8", pattern = "MM/dd HH:mm:ss")
|
||||
private String picUrl;
|
||||
|
||||
private Long authorId;
|
||||
|
||||
private String authorName;
|
||||
|
||||
private String bookDesc;
|
||||
|
||||
@JsonFormat(timezone = "GMT+8", pattern = "MM/dd HH:mm")
|
||||
private Date lastIndexUpdateTime;
|
||||
|
||||
private Byte bookStatus;
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
|
Reference in New Issue
Block a user