This commit is contained in:
dute7liang
2024-01-01 01:38:23 +08:00
parent d85e855cbc
commit eb53b78ab5
18 changed files with 334 additions and 49 deletions

View File

@@ -40,6 +40,7 @@ public class Union implements Serializable {
/**
* 工会默认二级支付奖励比例
*/
@Deprecated
private BigDecimal defaultIncomeRate;
/**
* 全部人数

View File

@@ -44,6 +44,7 @@ public class UnionUser implements Serializable {
/**
* vip分成
*/
@Deprecated
private BigDecimal vipDivide;
/**
* 是否开启提成

View File

@@ -116,7 +116,7 @@ public class User implements Serializable {
/**
* 邀请人
*/
private Integer inviteId;
private Long inviteId;
/**
* 终端 0 默认接口 1 安卓 2 ios 3 网页 4小程序
*/

View File

@@ -43,14 +43,6 @@ public class UserInfo {
* 登录次数
*/
private Integer loginCount;
/**
* 连续登录天数
*/
private Long continueLoginCount;
/**
* 最大连续登录天数
*/
private Long maxLoginCount;
/**
* 最后登录IP
*/

View File

@@ -19,11 +19,11 @@ public class UserOnline implements Serializable {
private static final long serialVersionUID=1L;
private Long id;
/**
* 用户ID
*/
@TableId(value = "user_id")
private Integer userId;
private Long userId;
/**
* 在线状态:0=离线,1=在线
*/