package com.gkhy.safePlatform.equipment.entity;
|
|
|
public class SafeMaterialBO {
|
private Long id;
|
private Integer totalCount;
|
private Integer stockCount;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getTotalCount() {
|
return totalCount;
|
}
|
|
public void setTotalCount(Integer totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
public Integer getStockCount() {
|
return stockCount;
|
}
|
|
public void setStockCount(Integer stockCount) {
|
this.stockCount = stockCount;
|
}
|
}
|