24 lines
498 B
Java
24 lines
498 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName("user_invite_register")
|
|
public class UserInviteRegister {
|
|
|
|
@TableId
|
|
private Integer id;
|
|
//邀请人
|
|
private Integer userId;
|
|
//被邀请人
|
|
private Integer invitedUserId;
|
|
//已计算湖分
|
|
private Integer countContribution;
|
|
|
|
private Date createTime;
|
|
}
|