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

com.alipay.api.domain.OperationValueLongDTO Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 经营分析、经营概况相关接口的指标的整数类型返回结构体
 *
 * @author auto create
 * @since 1.0, 2024-08-05 09:49:50
 */
public class OperationValueLongDTO extends AlipayObject {

	private static final long serialVersionUID = 8372494567594771612L;

	/**
	 * 指标上个周期的数值,不含包金额数值单位
	 */
	@ApiField("last_period_value")
	private Long lastPeriodValue;

	/**
	 * 指标的当前值与上期值的环比率,不含包金额数值
	 */
	@ApiField("ratio")
	private String ratio;

	/**
	 * 指标当前时间的数值,不含包金额数值单位
	 */
	@ApiField("value")
	private Long value;

	public Long getLastPeriodValue() {
		return this.lastPeriodValue;
	}
	public void setLastPeriodValue(Long lastPeriodValue) {
		this.lastPeriodValue = lastPeriodValue;
	}

	public String getRatio() {
		return this.ratio;
	}
	public void setRatio(String ratio) {
		this.ratio = ratio;
	}

	public Long getValue() {
		return this.value;
	}
	public void setValue(Long value) {
		this.value = value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy