
com.alipay.api.domain.PeriodInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The 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, 2016-10-26 17:43:39
*/
public class PeriodInfo extends AlipayObject {
private static final long serialVersionUID = 1248178318149631292L;
/**
* 单位
*/
@ApiField("dimension")
private String dimension;
/**
* 周期值
*/
@ApiField("value")
private Long value;
public String getDimension() {
return this.dimension;
}
public void setDimension(String dimension) {
this.dimension = dimension;
}
public Long getValue() {
return this.value;
}
public void setValue(Long value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy