departmenttable.java

来自「一个汽车售后服务站的典型的进销管理系统,B/S模式的」· Java 代码 · 共 54 行

JAVA
54
字号
package com.xfaccp.form;

import java.util.HashSet;
import java.util.Set;

import com.xfaccp.base.BaseForm;

/**
 * DepartmentTable generated by MyEclipse Persistence Tools
 */

public class DepartmentTable extends BaseForm {

	// Fields

	

	private String depName;

	private Set employeeTables = new HashSet(0);

	// Constructors

	/** default constructor */
	public DepartmentTable() {
	}

	/** full constructor */
	public DepartmentTable(String depName, Set employeeTables) {
		this.depName = depName;
		this.employeeTables = employeeTables;
	}

	// Property accessors



	public String getDepName() {
		return this.depName;
	}

	public void setDepName(String depName) {
		this.depName = depName;
	}

	public Set getEmployeeTables() {
		return this.employeeTables;
	}

	public void setEmployeeTables(Set employeeTables) {
		this.employeeTables = employeeTables;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?