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

io.github.biezhi.wechat.api.response.BaseResponse Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.biezhi.wechat.api.response;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

/**
 * 微信基础响应
 *
 * @author biezhi
 * @date 2018/1/19
 */
@Data
public class BaseResponse {

    @SerializedName("Ret")
    private Integer ret;

    @SerializedName("ErrMsg")
    private String msg;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy