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

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

package com.alipay.api.domain;

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

/**
 * 推进数据DTO,包含推进类型和推进值等属性
 *
 * @author auto create
 * @since 1.0, 2022-09-29 14:41:15
 */
public class PushDTO extends AlipayObject {

	private static final long serialVersionUID = 7494485881446518731L;

	/**
	 * 推进计算类型,如计次:CAL_COUNT
	 */
	@ApiField("cal_type")
	private String calType;

	/**
	 * 推进值
	 */
	@ApiField("inc_value")
	private Long incValue;

	public String getCalType() {
		return this.calType;
	}
	public void setCalType(String calType) {
		this.calType = calType;
	}

	public Long getIncValue() {
		return this.incValue;
	}
	public void setIncValue(Long incValue) {
		this.incValue = incValue;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy