cn.woodwhales.common.webhook.model.response.DingTalkResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodwhales-common Show documentation
Show all versions of woodwhales-common Show documentation
https://github.com/woodwhales
package cn.woodwhales.common.webhook.model.response;
/**
* 钉钉webhook响应对象
* @author woodwhales 2021-07-19 14:38
*/
public class DingTalkResponse {
private Integer errcode;
private String errmsg;
public DingTalkResponse() {
}
public Integer getErrcode() {
return errcode;
}
public void setErrcode(Integer errcode) {
this.errcode = errcode;
}
public String getErrmsg() {
return errmsg;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy