ReportDetailModel.java 1.66 KB
package com.xkl.model;

import lombok.Data;

/**
 * Created by win7 on 2016/12/12.
 */
@Data
public class ReportDetailModel {
    /**
     * XklAmpReportDetailEntity
     */
    private int itemId;//对应itemId
    private double itemValue;
    private int status;
    /**
     * XklAmpReportMetaItemsEntity
     */
    private String title;
    private String normalNv;
    private String normal;
    /**
     *  XklAmpReportHealthScoreEntity
     */
    private int type;
    private double typeHealthScore;

    public int getItemId() {
        return itemId;
    }

    public void setItemId(int itemId) {
        this.itemId = itemId;
    }

    public double getItemValue() {
        return itemValue;
    }

    public void setItemValue(double itemValue) {
        this.itemValue = itemValue;
    }

    public int getStatus() {
        return status;
    }

    public void setStatus(int status) {
        this.status = status;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getNormalNv() {
        return normalNv;
    }

    public void setNormalNv(String normalNv) {
        this.normalNv = normalNv;
    }

    public String getNormal() {
        return normal;
    }

    public void setNormal(String normal) {
        this.normal = normal;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public double getTypeHealthScore() {
        return typeHealthScore;
    }

    public void setTypeHealthScore(double typeHealthScore) {
        this.typeHealthScore = typeHealthScore;
    }
}