|
@@ -14,8 +14,8 @@ public class ProcessNode implements Serializable {
|
|
|
private Integer nodeId; //节点id
|
|
|
private Integer produceId; //产品id
|
|
|
private Integer processId; //工序id
|
|
|
- private char nodeNo; //节点编号
|
|
|
- private Integer nodeStatus; //节点状态:0异常; 1正常;
|
|
|
+ private String nodeNo; //节点编号
|
|
|
+ private Integer nodeStatus; //节点状态 1:正常 0异常
|
|
|
private String nodeDes; //节点备注
|
|
|
private Date nodeCreateTime; //创建时间
|
|
|
private Date nodeUpdateTime; //修改时间
|
|
@@ -44,11 +44,11 @@ public class ProcessNode implements Serializable {
|
|
|
this.processId = processId;
|
|
|
}
|
|
|
|
|
|
- public char getNodeNo() {
|
|
|
+ public String getNodeNo() {
|
|
|
return nodeNo;
|
|
|
}
|
|
|
|
|
|
- public void setNodeNo(char nodeNo) {
|
|
|
+ public void setNodeNo(String nodeNo) {
|
|
|
this.nodeNo = nodeNo;
|
|
|
}
|
|
|
|