Pu Zhibing
2024-10-24 58e039cc6b9cb2067e113c553948ccb88b9c6eba
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.account.api.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class InviteInfoDto {
    @ApiModelProperty("已获得积分")
    private Integer point;
    @ApiModelProperty("已邀请人数")
    private Integer inviteNum;
}