Blame view

src/main/java/com/huaheng/pc/config/materialWarnning/domain/MaterialSummary.java 396 Bytes
游杰 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
}