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

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

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

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

public class UmengUappCountDataNameValue {

    private String name;

    /**
     * @return 版本或渠道名
     */
    public String getName() {
        return name;
    }

    /**
     * 设置版本或渠道名     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setName(String name) {
        this.name = name;
    }

    private Integer value;

    /**
     * @return 统计数
     */
    public Integer getValue() {
        return value;
    }

    /**
     * 设置统计数     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setValue(Integer value) {
        this.value = value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy