deptbean.java
来自「cantain海鲜超市管理系统」· Java 代码 · 共 48 行
JAVA
48 行
package com.j1132.bean;
public class DeptBean {
public DeptBean(){
}
//部门号
private long dept_id;
//部门名字
private String dept_name;
//部门描述
private String dept_descreption;
public DeptBean(long dept_id, String dept_name,String dept_descreption){
this.dept_id = dept_id;
this.dept_name = dept_name;
this.dept_descreption =dept_descreption;
}
public long getDept_id() {
return dept_id;
}
public void setDept_id(long dept_id) {
this.dept_id = dept_id;
}
public String getDept_name() {
return dept_name;
}
public void setDept_name(String dept_name) {
this.dept_name = dept_name;
}
public String getDept_descreption() {
return dept_descreption;
}
public void setDept_descreption(String dept_descreption) {
this.dept_descreption = dept_descreption;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?