📄 mytaskinstance.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -