com.alipay.api.domain.AnttechBlockchainFinanceEnergyStationsystemSyncModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.Date;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 负荷聚合中心系统实时数据同步接口
*
* @author auto create
* @since 1.0, 2024-09-02 21:57:14
*/
public class AnttechBlockchainFinanceEnergyStationsystemSyncModel extends AlipayObject {
private static final long serialVersionUID = 2267156841553541779L;
/**
* 设备数据列表
*/
@ApiField("data_list")
private String dataList;
/**
* 数据类型
*/
@ApiField("data_type")
private String dataType;
/**
* 产品合约码
*/
@ApiField("product_agreement_code")
private String productAgreementCode;
/**
* 数据生成时间,时标。
格式 yyyy-MM-dd HH:mm:ss
*/
@ApiField("real_time")
private String realTime;
/**
* 数据上报时间
*/
@ApiField("report_time")
private Date reportTime;
public String getDataList() {
return this.dataList;
}
public void setDataList(String dataList) {
this.dataList = dataList;
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public String getProductAgreementCode() {
return this.productAgreementCode;
}
public void setProductAgreementCode(String productAgreementCode) {
this.productAgreementCode = productAgreementCode;
}
public String getRealTime() {
return this.realTime;
}
public void setRealTime(String realTime) {
this.realTime = realTime;
}
public Date getReportTime() {
return this.reportTime;
}
public void setReportTime(Date reportTime) {
this.reportTime = reportTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy