liujie
3 天以前 761bea9251b3ed5c44d021ed8359a0d3ee49ec62
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.system.vo;
 
import com.ruoyi.system.model.TAppUser;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("人员管理Vo")
public class TAppUserPageVo extends TAppUser {
    @ApiModelProperty(value = "分队名称")
    private String teamName;
}