package com.qianwen.mdc.dto.machine;
|
|
import com.qianwen.mdc.dto.BasePageDTO;
|
|
/**
|
* 车间地图参数对象
|
*/
|
public class MachineQueryDTO extends BasePageDTO{
|
/**
|
* 机床名称
|
*/
|
private String machineName;
|
/**
|
* ip地址
|
*/
|
private String ip;
|
/**
|
* 程序传输方式
|
*/
|
private Integer transMode;
|
/**
|
* 型号
|
*/
|
private String type;
|
/**
|
* 加工类型
|
*/
|
private String category;
|
/**
|
* 车间id
|
*/
|
private Long workshopId;
|
|
/**
|
* 关注标志
|
*/
|
private Integer concernFlag;
|
/**
|
* 工段id
|
*/
|
private Long sectionId;
|
/**
|
* 状态, RUN/STOP/IDLE/ALARM,对应车间地图等界面上面的4个状态筛选
|
*/
|
private String status;
|
|
/**
|
* 厂房id,必选参数
|
*/
|
private Long plantId;
|
|
|
public String getMachineName() {
|
return machineName;
|
}
|
public void setMachineName(String machineName) {
|
this.machineName = machineName;
|
}
|
|
public Long getWorkshopId() {
|
return workshopId;
|
}
|
public void setWorkshopId(Long workshopId) {
|
this.workshopId = workshopId;
|
}
|
public String getStatus() {
|
return status;
|
}
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
public Long getPlantId() {
|
return plantId;
|
}
|
public void setPlantId(Long plantId) {
|
this.plantId = plantId;
|
}
|
public String getIp() {
|
return ip;
|
}
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
public Long getSectionId() {
|
return sectionId;
|
}
|
public void setSectionId(Long sectionId) {
|
this.sectionId = sectionId;
|
}
|
public Integer getTransMode() {
|
return transMode;
|
}
|
public void setTransMode(Integer transMode) {
|
this.transMode = transMode;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public String getCategory() {
|
return category;
|
}
|
public void setCategory(String category) {
|
this.category = category;
|
}
|
public Integer getConcernFlag() {
|
return concernFlag;
|
}
|
public void setConcernFlag(Integer concernFlag) {
|
this.concernFlag = concernFlag;
|
}
|
|
|
}
|