HiddenStatVO.java 764 Bytes
Newer Older
耿迪迪's avatar
耿迪迪 committed
1 2 3 4 5 6 7
package com.zehong.system.domain.vo;

public class HiddenStatVO {

    /**
     * 隐患发现月份
     */
8
    private String month;
耿迪迪's avatar
耿迪迪 committed
9 10 11 12 13 14 15 16 17 18 19

    /**
     * 发现隐患数量
     */
    private int hiddenCount;

    /**
     * 整改数量
     */
    private int rectifiedCount;

20
    public String getMonth() {
耿迪迪's avatar
耿迪迪 committed
21 22 23
        return month;
    }

24
    public void setMonth(String month) {
耿迪迪's avatar
耿迪迪 committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        this.month = month;
    }

    public int getHiddenCount() {
        return hiddenCount;
    }

    public void setHiddenCount(int hiddenCount) {
        this.hiddenCount = hiddenCount;
    }

    public int getRectifiedCount() {
        return rectifiedCount;
    }

    public void setRectifiedCount(int rectifiedCount) {
        this.rectifiedCount = rectifiedCount;
    }
}