Pu Zhibing
2025-06-19 546be8a1bafdfc804575a8d07a5d9f2306c29c42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.system.api.model;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class QwUserDetailDto {
 
    @ApiModelProperty(value="成员UserID")
    private String userid;
 
    @ApiModelProperty(value="手机")
    private String mobile;
}