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