Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • domain
  • MaterialSummary.java
  • 增加物理报警
    e295e87a
    游杰 authored
    2021-03-04 08:42:29 +0800  
    Browse Code »
MaterialSummary.java 396 Bytes
Edit Raw Blame History Permalink
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;
    }
}