1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.xzx.gc.user.vo;
|
|
| import io.swagger.annotations.ApiModel;
|
| @ApiModel(value = "JhyInfoListVo", description = "后台集物员列表接口返回参数类")
| public class JhyInfoListVo {
|
| private String name;
|
| private String gender;
|
| private String mobile;
| }
|
|