flowchartitem.java
来自「工厂版本管理系统,STRUTS2框架,用于管理商品的版本,便于有效的控制版本」· Java 代码 · 共 34 行
JAVA
34 行
package com.utstar.fcs.domain.workinstruction;
public class FlowChartItem {
private Long id;
private StationVersion stationVersion;
private boolean enabled;
public StationVersion getStationVersion() {
return stationVersion;
}
public void setStationVersion(StationVersion stationVersion) {
this.stationVersion = stationVersion;
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?