package com.gkhy.safePlatform.emergency.rpc.api.model.dto.resp;
|
|
|
/**
|
* 物资信息返回实体信息
|
*/
|
public class EmergencySuppliesRPCResp {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 数量
|
*/
|
private Integer count;
|
/**
|
* 类型
|
*/
|
private Byte materialType;
|
/**
|
* 类型名称
|
*/
|
private String materialTypeName;
|
/**
|
* 名称
|
*/
|
private String name;
|
/**
|
* 编号
|
*/
|
private String number;
|
/**
|
* 型号
|
*/
|
private String model;
|
/**
|
* 所在位置
|
*/
|
private String place;
|
/**
|
* 使用说明
|
*/
|
private String useExplain;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getModel() {
|
return model;
|
}
|
|
public void setModel(String model) {
|
this.model = model;
|
}
|
|
public String getPlace() {
|
return place;
|
}
|
|
public void setPlace(String place) {
|
this.place = place;
|
}
|
|
public String getUseExplain() {
|
return useExplain;
|
}
|
|
public void setUseExplain(String useExplain) {
|
this.useExplain = useExplain;
|
}
|
|
public Byte getMaterialType() {
|
return materialType;
|
}
|
|
public void setMaterialType(Byte materialType) {
|
this.materialType = materialType;
|
}
|
|
public String getMaterialTypeName() {
|
return materialTypeName;
|
}
|
|
public void setMaterialTypeName(String materialTypeName) {
|
this.materialTypeName = materialTypeName;
|
}
|
}
|