Pu Zhibing
2024-10-17 53c1fcd4d3026c54bedf5b708fc13dc40e2f498f
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;
}