package com.huaheng.pc.config.materialWarnning.domain;

public class MaterialSummary {

    private int lower;
    private int upper;

    public int getLower() {
        return lower;
    }

    public void setLower(int lower) {
        this.lower = lower;
    }

    public int getUpper() {
        return upper;
    }

    public void setUpper(int upper) {
        this.upper = upper;
    }
}