| package com.xzx.gc.user.dto;  | 
|   | 
|   | 
| import com.xzx.gc.entity.OtherUserInfo;  | 
| import io.swagger.annotations.ApiModelProperty;  | 
| import lombok.Data;  | 
|   | 
| import java.util.List;  | 
|   | 
| @Data  | 
| public class LoginPwdResDto extends OtherUserInfo {  | 
|   | 
|   | 
|     private int flag;  | 
|   | 
|   | 
|     private String token;  | 
|   | 
|     @ApiModelProperty("是否已绑定 0已绑定 1未绑定")  | 
|     private Short bindFlag;  | 
|   | 
|     @ApiModelProperty("所有身份集合")  | 
|     private List<String> userTypeList;  | 
|   | 
|   | 
| }  |