Tcompany.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.email.company;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * 公司bean
- * @author admin
- *
- */
- public class Tcompany {
- private String comName;
- private String comid;
- private List deptList= new ArrayList();
- public String getComid() {
- return comid;
- }
- public void setComid(String comid) {
- this.comid = comid;
- }
- public String getComName() {
- return comName;
- }
- public void setComName(String comName) {
- this.comName = comName;
- }
- public List getDeptList() {
- return deptList;
- }
- public void setDeptList(List deptList) {
- this.deptList = deptList;
- }
- }