余额相关
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package cn.pluss.platform.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
@@ -20,6 +21,7 @@ public class UserAccount implements Serializable {
|
||||
|
||||
|
||||
@TableField("user_id")
|
||||
@TableId(value = "user_id", type = IdType.AUTO)
|
||||
private Integer userId;
|
||||
@TableField("freeze_balance")
|
||||
private BigDecimal freezeBalance;
|
||||
|
||||
@@ -18,13 +18,13 @@ import java.util.Date;
|
||||
@TableName("tb_pluss_user_account_flow")
|
||||
public class UserAccountFlow implements Serializable {
|
||||
|
||||
@TableId(type = IdType.AUTO)
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
@TableField("user_id")
|
||||
private Integer userId;
|
||||
|
||||
@TableField("biz_code")
|
||||
private String bizCode;
|
||||
|
||||
@TableField("biz_name")
|
||||
private String bizName;
|
||||
|
||||
private BigDecimal amount;
|
||||
@@ -32,8 +32,8 @@ public class UserAccountFlow implements Serializable {
|
||||
private BigDecimal balance;
|
||||
|
||||
private String remark;
|
||||
|
||||
@TableField("create_time")
|
||||
private Date createTime;
|
||||
|
||||
@TableField("update_time")
|
||||
private Date updateTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user