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

eleme.openapi.sdk.api.entity.msgNew.MsgConfirmResult Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.msgNew;

public class MsgConfirmResult{

    /**
     * 是否成功
     */
    private boolean success;
    public boolean getSuccess() {
        return success;
    }
    public void setSuccess(boolean success) {
        this.success = success;
    }
    
    /**
     * 原因
     */
    private String msg;
    public String getMsg() {
        return msg;
    }
    public void setMsg(String msg) {
        this.msg = msg;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy