-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientDTO.java
More file actions
33 lines (27 loc) · 1.02 KB
/
ClientDTO.java
File metadata and controls
33 lines (27 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package sec06;
import java.util.Date;
public class ClientDTO {
private int clientNo;
private String clientName;
private String clientPhone;
private String clientAddress;
private Date clientBirth;
private String clientHobby;
private String clientGender;
private String clientPassword;
public ClientDTO(int clientNo, String clientName, String clientPhone,
String clientAddress, Date clientBirth,
String clientHobby, String clientGender, String clientPassword) {
this.clientNo = clientNo;
this.clientName = clientName;
this.clientPhone = clientPhone;
this.clientAddress = clientAddress;
this.clientBirth = clientBirth;
this.clientHobby = clientHobby;
this.clientGender = clientGender;
this.clientPassword = clientPassword;
}
public int getClientNo() { return clientNo; }
public String getClientName() { return clientName; }
public String getClientPassword() { return clientPassword; }
}