?? customerrequestmsg.java
字號:
package com.sun.demo.openesb.types.customerrequestmsg;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for CustomerRequestMsg complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="CustomerRequestMsg">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="accountNum" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accountPassword" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="operateAmount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="operateType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomerRequestMsg", propOrder = {
"accountNum",
"accountPassword",
"operateAmount",
"operateType"
})
public class CustomerRequestMsg {
@XmlElement(required = true)
protected String accountNum;
@XmlElement(required = true)
protected String accountPassword;
@XmlElement(required = true, type = Integer.class, nillable = true)
protected Integer operateAmount;
@XmlElement(required = true)
protected String operateType;
/**
* Gets the value of the accountNum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountNum() {
return accountNum;
}
/**
* Sets the value of the accountNum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountNum(String value) {
this.accountNum = value;
}
/**
* Gets the value of the accountPassword property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountPassword() {
return accountPassword;
}
/**
* Sets the value of the accountPassword property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountPassword(String value) {
this.accountPassword = value;
}
/**
* Gets the value of the operateAmount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getOperateAmount() {
return operateAmount;
}
/**
* Sets the value of the operateAmount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setOperateAmount(Integer value) {
this.operateAmount = value;
}
/**
* Gets the value of the operateType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOperateType() {
return operateType;
}
/**
* Sets the value of the operateType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOperateType(String value) {
this.operateType = value;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -