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

com.quec.model.device.response.DeviceDmReadDataResponse Maven / Gradle / Ivy

The newest version!
package com.quec.model.device.response;

import com.quec.model.BasicsModel;

import java.util.List;

public class DeviceDmReadDataResponse extends BasicsModel {
    public Boolean success;

    public String msg;

    public String errorMsg;

    public List body;

    public Integer total;

    public Integer pageNum;

    public Integer pageSize;

    public Integer pages;

    public Boolean getSuccess() {
        return success;
    }

    public void setSuccess(Boolean success) {
        this.success = success;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public String getErrorMsg() {
        return errorMsg;
    }

    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }

    public List getBody() {
        return body;
    }

    public void setBody(List body) {
        this.body = body;
    }

    public Integer getTotal() {
        return total;
    }

    public void setTotal(Integer total) {
        this.total = total;
    }

    public Integer getPageNum() {
        return pageNum;
    }

    public void setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
    }

    public Integer getPageSize() {
        return pageSize;
    }

    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }

    public Integer getPages() {
        return pages;
    }

    public void setPages(Integer pages) {
        this.pages = pages;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy