mytaskinstance.java
来自「Fire-Workflow-Engine-All-In-One-20090208」· Java 代码 · 共 37 行
JAVA
37 行
package org.fireflow.example.workflow_ext;
import org.fireflow.engine.impl.TaskInstance;
public class MyTaskInstance extends TaskInstance {
private String sn = null;
private String goodsName = null;
private Long quantity = null;
private String customerName = null;
public String getSn() {
return sn;
}
public void setSn(String sn) {
this.sn = sn;
}
public String getGoodsName() {
return goodsName;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
public Long getQuantity() {
return quantity;
}
public void setQuantity(Long quantity) {
this.quantity = quantity;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?