📄 creditprocess.java
字号:
package localhost._8080.bankservice.processcredit;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="in1" type="{http://www.w3.org/2001/XMLSchema}double"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "creditProcess")
public class CreditProcess {
@XmlElement(required = true, nillable = true)
protected String in0;
protected double in1;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
*/
public double getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
*/
public void setIn1(double value) {
this.in1 = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -