Pu Zhibing
2025-07-10 901843cdf54978385c52f34ff7aff9c7dec4b6ac
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;
}