taccountoperation.java
来自「jbpm-bpel-1.1.Beta3 JBoss jBPM Starters」· Java 代码 · 共 37 行
JAVA
37 行
// This class was generated by the JAXRPC SI, do not edit.
// Contents subject to change without notice.
// JAX-RPC Standard Implementation (1.1.3, build R1)
// Generated source version: 1.1.3
package org.jbpm.bpel.tutorial.account.types;
public class TAccountOperation {
protected java.lang.String customerName;
protected double amount;
public TAccountOperation() {
}
public TAccountOperation(java.lang.String customerName, double amount) {
this.customerName = customerName;
this.amount = amount;
}
public java.lang.String getCustomerName() {
return customerName;
}
public void setCustomerName(java.lang.String customerName) {
this.customerName = customerName;
}
public double getAmount() {
return amount;
}
public void setAmount(double amount) {
this.amount = amount;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?