me.chanjar.weixin.cp.bean.WxCpDepart Maven / Gradle / Ivy
The newest version!
package me.chanjar.weixin.cp.bean;
import java.io.Serializable;
import lombok.Data;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
/**
* 微信部门.
*
* @author Daniel Qian
*/
@Data
public class WxCpDepart implements Serializable {
private static final long serialVersionUID = -5028321625140879571L;
private Long id;
private String name;
private Long parentId;
private Long order;
public static WxCpDepart fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, WxCpDepart.class);
}
public String toJson() {
return WxCpGsonBuilder.create().toJson(this);
}
}