package com.gk.hotwork.doublePrevention.entity.dto.resp;
|
|
public class PreventProduceDeviceListsQueryRespDTO {
|
/**
|
* 主键
|
* */
|
private Long id;
|
/**
|
* 生产装置名称
|
* */
|
private String produceDeviceName;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getProduceDeviceName() {
|
return produceDeviceName;
|
}
|
|
public void setProduceDeviceName(String produceDeviceName) {
|
this.produceDeviceName = produceDeviceName;
|
}
|
}
|