| | |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-06-09 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("用户绑定老人关系返回参数") |
| | | public class ComEldersAuthUserVO { |
| | | |
| | | @ApiModelProperty(value = "主键id") |
| | | private Long id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "用户id") |
| | | private Long userId; |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty(value = "与本人关系(1.父母 2.配偶 3.子女 4.兄弟姐妹 5.祖/外祖父母 6.本人 7.其他)") |
| | | private Integer relation; |
| | | private Integer relation; |
| | | |
| | | @ApiModelProperty(value = "是否已认证(1.是 2.否)") |
| | | private Integer isAuth; |
| | | private Integer isAuth; |
| | | |
| | | @ApiModelProperty(value = "姓名") |
| | | private String name; |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "身份证号码") |
| | | private String idCard; |
| | | private String idCard; |
| | | |
| | | @ApiModelProperty(value = "社区id") |
| | | private Long communityId; |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty(value = "高龄老人库id") |
| | | private Long bigAgeId; |
| | | |
| | | private Long bigAgeId; |
| | | |
| | | } |