-- 新版提交

This commit is contained in:
yc13649764453
2023-09-09 13:51:35 +08:00
parent 763e24b4e0
commit 0b193caa03
92 changed files with 3451 additions and 1120 deletions

View File

@@ -3,6 +3,7 @@ package com.peanut.modules.book.entity;
import com.baomidou.mybatisplus.annotation.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import lombok.Data;
@@ -66,7 +67,7 @@ public class MyUserEntity implements Serializable {
/**
* 花生币
*/
private Integer peanutCoin;
private BigDecimal peanutCoin;
/**
* 阅读时间
*/
@@ -106,4 +107,7 @@ public class MyUserEntity implements Serializable {
@TableField(exist = false)
private Integer conponsCount;
private String remark;
}