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

com.umeng.uapp.param.UmengUappCreateAppResult Maven / Gradle / Ivy

The newest version!
package com.umeng.uapp.param;

import java.util.*;
import java.math.BigDecimal;
import java.math.BigInteger;

public class UmengUappCreateAppResult {

    private Long code;

    /**
     * @return 状态码
     */
    public Long getCode() {
        return code;
    }

    /**
     * 设置状态码     *
          
     * 此参数必填
     */
    public void setCode(Long code) {
        this.code = code;
    }

    private Boolean success;

    /**
     * @return 状态
     */
    public Boolean getSuccess() {
        return success;
    }

    /**
     * 设置状态     *
          
     * 此参数必填
     */
    public void setSuccess(Boolean success) {
        this.success = success;
    }

    private String data;

    /**
     * @return 成功时返回新建应用key
     */
    public String getData() {
        return data;
    }

    /**
     * 设置成功时返回新建应用key     *
          
     * 此参数必填
     */
    public void setData(String data) {
        this.data = data;
    }

    private String msg;

    /**
     * @return 返回消息
     */
    public String getMsg() {
        return msg;
    }

    /**
     * 设置返回消息     *
          
     * 此参数必填
     */
    public void setMsg(String msg) {
        this.msg = msg;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy