All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.woodwhales.common.webhook.model.response.DingTalkResponse Maven / Gradle / Ivy

There is a newer version: 3.8.3
Show newest version
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