package com.ruoyi.account.api.model; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.ruoyi.common.core.web.domain.BasePojo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; import java.time.LocalDateTime; /** *
* *
* * @author luodangjia * @since 2024-08-06 */ @Data @EqualsAndHashCode(callSuper = false) @TableName("t_invite_user") @ApiModel(value="TInviteUser对象", description="") public class TInviteUser implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "主键") @TableId(value = "id", type = IdType.NONE) private Integer id; @ApiModelProperty(value = "用户id") @TableField("app_user_id") private Long appUserId; @ApiModelProperty(value = "被邀请用户id") @TableField("be_invited_app_user_id") private Long beInvitedAppUserId; @ApiModelProperty(value = "奖励积分") @TableField("award") private Integer award; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; }