me.chanjar.weixin.cp.bean.school.user.WxCpBatchUpdateParentRequest Maven / Gradle / Ivy
package me.chanjar.weixin.cp.bean.school.user;
import com.google.gson.annotations.SerializedName;
import lombok.*;
import lombok.experimental.Accessors;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
import java.io.Serializable;
import java.util.List;
/**
* 批量更新家长.
*
* @author Wang_Wong created on 2022-07-11
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Accessors(chain = true)
public class WxCpBatchUpdateParentRequest implements Serializable {
private static final long serialVersionUID = -4960239393895754138L;
@SerializedName("parents")
private List parents;
/**
* The type Parent.
*/
@Setter
@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class Parent implements Serializable {
@SerializedName("parent_userid")
private String parentUserId;
@SerializedName("new_parent_userid")
private String newParentUserId;
@SerializedName("mobile")
private String mobile;
@SerializedName("children")
private List children;
/**
* From json parent.
*
* @param json the json
* @return the parent
*/
public static Parent fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, Parent.class);
}
/**
* To json string.
*
* @return the string
*/
public String toJson() {
return WxCpGsonBuilder.create().toJson(this);
}
}
/**
* The type Children.
*/
@Setter
@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class Children implements Serializable {
@SerializedName("student_userid")
private String studentUserId;
@SerializedName("relation")
private String relation;
/**
* From json children.
*
* @param json the json
* @return the children
*/
public static Children fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, Children.class);
}
/**
* To json string.
*
* @return the string
*/
public String toJson() {
return WxCpGsonBuilder.create().toJson(this);
}
}
/**
* From json wx cp batch update parent request.
*
* @param json the json
* @return the wx cp batch update parent request
*/
public static WxCpBatchUpdateParentRequest fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, WxCpBatchUpdateParentRequest.class);
}
/**
* To json string.
*
* @return the string
*/
public String toJson() {
return WxCpGsonBuilder.create().toJson(this);
}
}