31 lines
557 B
Java
31 lines
557 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_course")
|
|
public class UserInviteCourse {
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
private Integer userId;
|
|
|
|
private Integer invitedUserId;
|
|
|
|
private Integer orderId;
|
|
|
|
private Integer courseId;
|
|
|
|
private Integer catalogueId;
|
|
//已计算湖分
|
|
private Integer countContribution;
|
|
|
|
private Date createTime;
|
|
|
|
}
|