doctorinfo.java
来自「BEA WebLogic Server 8.1大全 = BEA webLogic」· Java 代码 · 共 29 行
JAVA
29 行
import java.io.Serializable;
/**
* Class DoctorInfo
* Description: A user-defined data type to be used as a Web Service
* operation parameter
*
* Copyright: Copyright (c) 2002
* Company: Gamma Enterprise Technologies
* @author Jeff Marin <jeffm@getgamma.com>
* @version 1.0 9/27/2002
*/
public class DoctorInfo implements Serializable {
public int id;
public String firstName;
public String lastName;
public float officeVisitCharge;
public DoctorInfo() {
}
public DoctorInfo(int id, String firstName, String lastName, float officeVisitCharge) {
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
this.officeVisitCharge = officeVisitCharge;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?