feat: 手机端阅读历史页面适配

This commit is contained in:
xiongxiaoyang
2023-10-12 09:28:29 +08:00
parent 8bc05a1606
commit 4c9f39ab19
5 changed files with 405 additions and 70 deletions

View File

@ -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";
}
/**
* 充值页
*/

View File

@ -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() {