본문 바로가기

2023.11.21-2024.05.31

231227 JAVA DepartmentsDTO

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.sukgi.dto;
//데이터 전송 객체
public class DepartmentsDTO {
    //privte
    private String dept_no, dept_name;
    //getter setter
    public String getDept_no() {
        return dept_no;
    }
 
    public void setDept_no(String dept_no) {
        this.dept_no = dept_no;
    }
 
    public String getDept_name() {
        return dept_name;
    }
 
    public void setDept_name(String dept_name) {
        this.dept_name = dept_name;
    }
 
}
 
cs

'2023.11.21-2024.05.31' 카테고리의 다른 글

231227 HTML index  (0) 2023.12.27
231227 JAVA DepartmentsDAO  (0) 2023.12.27
231227 JAVA Test-Employees  (0) 2023.12.27
231227 JAVA EmployeesDAO  (0) 2023.12.27
231227 JAVA EmployeesDTO  (1) 2023.12.27