This commit is contained in:
dute7liang
2023-12-24 01:20:00 +08:00
parent c083cb9763
commit b3002937e4
6 changed files with 16 additions and 30 deletions

View File

@@ -31,7 +31,6 @@ public class CaiAccount implements Serializable {
/**
* 用户ID
*/
@TableId(value = "user_id")
private Long userId;
/**
* 充值的可用余额

View File

@@ -22,15 +22,16 @@ public class CaiUserFollow implements Serializable {
private static final long serialVersionUID=1L;
@TableId(value = "id")
private Integer id;
/**
* 关注人ID
*/
@TableId(value = "user_id")
private Long userId;
/**
* 被关注人ID
*/
@TableId(value = "follow_user")
private Long followUser;
/**
* 状态 0 未查看 1 已查看