mirror of
https://github.com/201206030/novel-cloud.git
synced 2025-07-13 21:56:38 +00:00
用户微服务开发完成,支付微服务开发中
This commit is contained in:
@ -0,0 +1,30 @@
|
||||
package com.java2nb.novel.user.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.java2nb.novel.user.entity.UserReadHistory;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author 11797
|
||||
*/
|
||||
@Data
|
||||
public class BookReadHistoryVO extends UserReadHistory {
|
||||
|
||||
private Integer catId;
|
||||
private String catName;
|
||||
private Long lastIndexId;
|
||||
|
||||
private String lastIndexName;
|
||||
private String bookName;
|
||||
|
||||
@JsonFormat(timezone = "GMT+8", pattern = "MM/dd HH:mm:ss")
|
||||
private Date lastIndexUpdateTime;
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.java2nb.novel.user.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.java2nb.novel.user.entity.UserBookshelf;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author 11797
|
||||
*/
|
||||
@Data
|
||||
public class BookShelfVO extends UserBookshelf {
|
||||
|
||||
private Integer catId;
|
||||
private String catName;
|
||||
private Long lastIndexId;
|
||||
|
||||
private String lastIndexName;
|
||||
private String bookName;
|
||||
|
||||
@JsonFormat(timezone = "GMT+8", pattern = "MM/dd HH:mm:ss")
|
||||
private Date lastIndexUpdateTime;
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user