xiaoyong931011
2021-07-14 cf148cae4937f807347e56d94b2dc96c9f258c59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xzx.gc.user.dto;
 
import cn.hutool.core.convert.Convert;
import com.github.pagehelper.PageInfo;
import com.xzx.gc.common.constant.Constants;
import com.xzx.gc.entity.UserShareInfo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FindVisiterDto{
 
    @ApiModelProperty(value = "邀请次数", name = "inviteCount")
    private transient String inviteCount="0";
    @ApiModelProperty(value = "邀请获得的总金额", name = "inviteCount")
    private transient String inviteMoney=Convert.toStr(Constants.MONEY_INIT);
 
    @ApiModelProperty("分页信息")
    private PageInfo<UserShareInfo> pageInfo;
 
}