| | |
| | | public class LoginUserInfoVO { |
| | | |
| | | @ApiModelProperty("user_id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty("微信会话密钥") |
| | |
| | | private String tags; |
| | | |
| | | @ApiModelProperty("家庭id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long familyId; |
| | | |
| | | @ApiModelProperty(value = "分页每页数量", example = "10") |
| | |
| | | private List<ComMngStructHouseVO> comMngStructHouseVOS; |
| | | |
| | | @ApiModelProperty("用户小区id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | // @Min(value = 1,groups = {PutGroup.class},message = "用户小区id不能为空") |
| | | // @NotNull(groups = {PutGroup.class},message = "用户小区id不能为空") |
| | | private Long areaId; |
| | |
| | | @ApiModelProperty("areaCode") |
| | | private String areaCode; |
| | | @ApiModelProperty("街道id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long streetId; |
| | | |
| | | @ApiModelProperty("账号类型 1街道 2社区 3社会组织") |
| | | private Integer userType; |
| | | |
| | | @ApiModelProperty("社会组织Id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long orgId; |
| | | |
| | | @ApiModelProperty("是否是防疫工作人员 1.是 2.否") |
| | |
| | | private Integer isCheckUnitAdmin; |
| | | |
| | | @ApiModelProperty("报道单位id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long checkUnitId; |
| | | |
| | | |