package com.gkhy.safePlatform.equipment.model.dto.resp;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
public class SafeMaterialDto {
|
/**
|
* 主键
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
/**
|
* 物资序列号 (如果以后id使用雪花算法时候再启用该字段)
|
*/
|
private String serialNum;
|
/**
|
* 物资类型id
|
*/
|
private Long materialClassifyId;
|
|
private String materialClassifyName;
|
/**
|
* 部门id
|
*/
|
private Long depId;
|
/**
|
* 部门名称
|
*/
|
private String depName;
|
/**
|
* 物资名称
|
*/
|
private String materialName;
|
/**
|
* 是否是耗材(0是, 1否)
|
*/
|
private Byte consumable;
|
private String consumableName;
|
|
/**
|
* 有效库存数量
|
*/
|
private Integer validStockCount;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getSerialNum() {
|
return serialNum;
|
}
|
|
public void setSerialNum(String serialNum) {
|
this.serialNum = serialNum;
|
}
|
|
public Long getMaterialClassifyId() {
|
return materialClassifyId;
|
}
|
|
public void setMaterialClassifyId(Long materialClassifyId) {
|
this.materialClassifyId = materialClassifyId;
|
}
|
|
public String getMaterialClassifyName() {
|
return materialClassifyName;
|
}
|
|
public void setMaterialClassifyName(String materialClassifyName) {
|
this.materialClassifyName = materialClassifyName;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public String getMaterialName() {
|
return materialName;
|
}
|
|
public void setMaterialName(String materialName) {
|
this.materialName = materialName;
|
}
|
|
public Byte getConsumable() {
|
return consumable;
|
}
|
|
public void setConsumable(Byte consumable) {
|
this.consumable = consumable;
|
}
|
|
public String getConsumableName() {
|
return consumableName;
|
}
|
|
public void setConsumableName(String consumableName) {
|
this.consumableName = consumableName;
|
}
|
|
public Integer getValidStockCount() {
|
return validStockCount;
|
}
|
|
public void setValidStockCount(Integer validStockCount) {
|
this.validStockCount = validStockCount;
|
}
|
|
|
}
|