1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.oying.modules.system.domain.dto;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Getter;
| import lombok.Setter;
|
| import java.io.Serializable;
|
| /**
| * @description /
| * @author pxb
| * @date 2025-10-20
| **/
| @Getter
| @Setter
| public class InvitationsVo implements Serializable {
|
| @ApiModelProperty(value = "邀请人ID")
| private Long inviterId;
|
| @ApiModelProperty(value = "新用户ID")
| private Long newUserId;
|
| @ApiModelProperty(value = "用户类型(QS骑手邀请记录,YH买家用户邀请记录)")
| private String userType;
|
| }
|
|