jiangqs
2023-06-18 c00d0d3bc399b6648145dfd955cedbea90f5f99d
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("成员UserID")
    private String userid;
 
    @ApiModelProperty("手机")
    private String mobile;
}