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

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

package com.alipay.api.domain;

import java.util.Date;
import java.util.List;

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

/**
 * 查询森林碳账户日数据
 *
 * @author auto create
 * @since 1.0, 2024-03-15 16:06:57
 */
public class AlipaySocialAntforestCarbondayQueryModel extends AlipayObject {

	private static final long serialVersionUID = 1269746715277622981L;

	/**
	 * 碳账户绿色场景类型,类型为字符串数组。
	 */
	@ApiListField("carbon_type")
	@ApiField("string")
	private List carbonType;

	/**
	 * 日期(选填),不输入时间,查询最近30天数据, 输入时间,查询指定日期数据
	 */
	@ApiField("day")
	private Date day;

	/**
	 * 蚂蚁统一会员ID
	 */
	@ApiField("open_id")
	private String openId;

	/**
	 * 蚂蚁统一会员ID
	 */
	@ApiField("user_id")
	private String userId;

	public List getCarbonType() {
		return this.carbonType;
	}
	public void setCarbonType(List carbonType) {
		this.carbonType = carbonType;
	}

	public Date getDay() {
		return this.day;
	}
	public void setDay(Date day) {
		this.day = day;
	}

	public String getOpenId() {
		return this.openId;
	}
	public void setOpenId(String openId) {
		this.openId = openId;
	}

	public String getUserId() {
		return this.userId;
	}
	public void setUserId(String userId) {
		this.userId = userId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy