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

com.umeng.uapp.param.UmengUappDurationInfo 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 UmengUappDurationInfo {

    private String name;

    /**
     * @return 时间区间单位秒
     */
    public String getName() {
        return name;
    }

    /**
     * 设置时间区间单位秒     *
     * 参数示例:
1-3,4-10,11-30
* 此参数必填 */ 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;
    }

    private Double percent;

    /**
     * @return 此区间的时长占
     */
    public Double getPercent() {
        return percent;
    }

    /**
     * 设置此区间的时长占     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setPercent(Double percent) {
        this.percent = percent;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy