This commit is contained in:
张良(004796)
2024-04-10 17:20:26 +08:00
parent 2f3f1ca46b
commit fdc51206d1
6 changed files with 127 additions and 13 deletions

View File

@@ -0,0 +1,74 @@
package com.ruoyi.yunxin.resp;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
public class YxUpdateUinfoR {
private Integer code;
private List<Uinfos> uinfos;
@NoArgsConstructor
@Data
public static class Uinfos {
/**
* 账号
*/
@JsonProperty("accid")
private String accid;
/**
* 昵称
*/
@JsonProperty("name")
private String name;
/**
* 头像
*/
@JsonProperty("icon")
private String icon;
/**
* 签名
*/
@JsonProperty("sign")
private String sign;
/**
* 邮箱
*/
@JsonProperty("email")
private String email;
/**
* 生日
*/
@JsonProperty("birth")
private String birth;
/**
* 手机号
*/
@JsonProperty("mobile")
private String mobile;
/**
* 扩展信息
*/
@JsonProperty("ex")
private String ex;
/**
* 性别0表示未知1表示男2表示女
*/
@JsonProperty("gender")
private Integer gender;
/**
* 账号是否有效
*/
@JsonProperty("valid")
private Boolean valid;
/**
* 账号是否被全局禁言
*/
@JsonProperty("mute")
private Boolean mute;
}
}