com.alipay.api.response.AlipaySocialAntforestEggypartyQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.social.antforest.eggyparty.query response.
*
* @author auto create
* @since 1.0, 2024-09-02 17:21:46
*/
public class AlipaySocialAntforestEggypartyQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1728379565466389285L;
/**
* 公益林用户总浇水能量克数
*/
@ApiField("total_water_energy")
private String totalWaterEnergy;
/**
* 公益林总浇水次数
*/
@ApiField("total_water_times")
private String totalWaterTimes;
public void setTotalWaterEnergy(String totalWaterEnergy) {
this.totalWaterEnergy = totalWaterEnergy;
}
public String getTotalWaterEnergy( ) {
return this.totalWaterEnergy;
}
public void setTotalWaterTimes(String totalWaterTimes) {
this.totalWaterTimes = totalWaterTimes;
}
public String getTotalWaterTimes( ) {
return this.totalWaterTimes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy