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

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

There is a newer version: 1.1.0
Show newest version
package com.umeng.uapp.param;

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

public class UmengUappActiveAccountInfo {

    private String date;

    /**
     * @return 统计日期
     */
    public String getDate() {
        return date;
    }

    /**
     * 设置统计日期
     * 此参数必填
     */
    public void setDate(String date) {
        this.date = date;
    }

    private Integer activeUser;

    /**
     * @return 活跃用户
     */
    public Integer getActiveUser() {
        return activeUser;
    }

    /**
     * 设置活跃用户
     * 此参数必填
     */
    public void setActiveUser(Integer activeUser) {
        this.activeUser = activeUser;
    }

    private Integer activeAccount;

    /**
     * @return 活跃账号
     */
    public Integer getActiveAccount() {
        return activeAccount;
    }

    /**
     * 设置活跃账号
     * 此参数必填
     */
    public void setActiveAccount(Integer activeAccount) {
        this.activeAccount = activeAccount;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy