package com.gkhy.safePlatform.equipment.model.dto.req;
|
|
public class SafeMaterialQuery {
|
/**
|
* 物资类型id
|
*/
|
private Long bigClassifyId;
|
/**
|
* 物资名称
|
*/
|
private String materialName;
|
|
private Long depId;
|
|
public Long getBigClassifyId() {
|
return bigClassifyId;
|
}
|
|
public void setBigClassifyId(Long bigClassifyId) {
|
this.bigClassifyId = bigClassifyId;
|
}
|
|
public String getMaterialName() {
|
return materialName;
|
}
|
|
public void setMaterialName(String materialName) {
|
this.materialName = materialName;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
}
|