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