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

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

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

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

public class UmengUappDateCountInfo {

    private String[] dates;

    /**
     * @return 统计日期数组
     */
    public String[] getDates() {
        return dates;
    }

    /**
     * 设置统计日期数组     *
     * 参数示例:
"2018-01-01","2018-01-02"
* 此参数必填 */ public void setDates(String[] dates) { this.dates = dates; } private int[] data; /** * @return 统计数据数组 */ public int[] getData() { return data; } /** * 设置统计数据数组 * * 参数示例:
1234,5678
* 此参数必填 */ public void setData(int[] data) { this.data = data; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy