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

com.dahuatech.icc.electricity.model.v202208.energy.EnergyCountResponse Maven / Gradle / Ivy

The newest version!
package com.dahuatech.icc.electricity.model.v202208.energy;

import com.dahuatech.icc.oauth.http.IccResponse;

import java.util.List;

/**
 * program:java-sdk
 *
 * @Author: 355079
 * @Date:2022-08-22 13:42
 * @Description:
 */
public class EnergyCountResponse extends IccResponse {
    private Data data;
    public class Data{
        private List value;
        public class Value{
            private Integer orgType;
            private Integer dateType;
            private List orgData;
            private List deviceCode;
            private List channelId;
            private String date;
            private String airSwitchType;

            public Integer getOrgType() {
                return orgType;
            }

            public void setOrgType(Integer orgType) {
                this.orgType = orgType;
            }

            public Integer getDateType() {
                return dateType;
            }

            public void setDateType(Integer dateType) {
                this.dateType = dateType;
            }

            public List getOrgData() {
                return orgData;
            }

            public void setOrgData(List orgData) {
                this.orgData = orgData;
            }

            public List getDeviceCode() {
                return deviceCode;
            }

            public void setDeviceCode(List deviceCode) {
                this.deviceCode = deviceCode;
            }

            public List getChannelId() {
                return channelId;
            }

            public void setChannelId(List channelId) {
                this.channelId = channelId;
            }

            public String getDate() {
                return date;
            }

            public void setDate(String date) {
                this.date = date;
            }

            public String getAirSwitchType() {
                return airSwitchType;
            }

            public void setAirSwitchType(String airSwitchType) {
                this.airSwitchType = airSwitchType;
            }
        }

        public List getValue() {
            return value;
        }

        public void setValue(List value) {
            this.value = value;
        }
    }

    public Data getData() {
        return data;
    }

    public void setData(Data data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy