init
This commit is contained in:
@@ -40,6 +40,7 @@ public class Union implements Serializable {
|
||||
/**
|
||||
* 工会默认二级支付奖励比例
|
||||
*/
|
||||
@Deprecated
|
||||
private BigDecimal defaultIncomeRate;
|
||||
/**
|
||||
* 全部人数
|
||||
|
||||
@@ -44,6 +44,7 @@ public class UnionUser implements Serializable {
|
||||
/**
|
||||
* vip分成
|
||||
*/
|
||||
@Deprecated
|
||||
private BigDecimal vipDivide;
|
||||
/**
|
||||
* 是否开启提成
|
||||
|
||||
@@ -116,7 +116,7 @@ public class User implements Serializable {
|
||||
/**
|
||||
* 邀请人
|
||||
*/
|
||||
private Integer inviteId;
|
||||
private Long inviteId;
|
||||
/**
|
||||
* 终端 0 默认接口 1 安卓 2 ios 3 网页 4小程序
|
||||
*/
|
||||
|
||||
@@ -43,14 +43,6 @@ public class UserInfo {
|
||||
* 登录次数
|
||||
*/
|
||||
private Integer loginCount;
|
||||
/**
|
||||
* 连续登录天数
|
||||
*/
|
||||
private Long continueLoginCount;
|
||||
/**
|
||||
* 最大连续登录天数
|
||||
*/
|
||||
private Long maxLoginCount;
|
||||
/**
|
||||
* 最后登录IP
|
||||
*/
|
||||
|
||||
@@ -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=在线
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user