package com.gkhy.safePlatform.equipment.entity;
|
|
public class SafeMaterialDetailCountDO {
|
private Long smId;
|
private Integer count;
|
|
private Long smallClassifyId;
|
|
public Long getSmId() {
|
return smId;
|
}
|
|
public void setSmId(Long smId) {
|
this.smId = smId;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Long getSmallClassifyId() {
|
return smallClassifyId;
|
}
|
|
public void setSmallClassifyId(Long smallClassifyId) {
|
this.smallClassifyId = smallClassifyId;
|
}
|
}
|