⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exportfilelist.java

📁 hr伯乐管理系统!非常适合java学员做学习参考用!是用集成框架开发的Struts+hrbernet+Spring 开发的
💻 JAVA
字号:
package org.better.hr.entity;

import java.util.ArrayList;
import java.util.List;

public class ExportFileList extends ArrayList{
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	public Object get(int index) {
        while (index >= size()) {
            add(new ExportFile());
        }
        return super.get(index);
    }
	
	public ArrayList getExportlist()
	{		
		this.add(new ExportFile("firstKindName","I级机构名称",false));
		this.add(new ExportFile("secondKindName","II级机构名称",false));
		this.add(new ExportFile("thirdKindName","III级机构名称",false));
		this.add(new ExportFile("humanId","档案编号",false));
		this.add(new ExportFile("humanName","姓名",false));
		this.add(new ExportFile("humanAddress","住址",false));
		this.add(new ExportFile("humanPostcode","邮编",false));
		this.add(new ExportFile("humanProDesignation","职称",false));
		this.add(new ExportFile("humanMajorKindName","职位分类名称",false));
		this.add(new ExportFile("hunmaMajorName","职位名称",false));
		this.add(new ExportFile("humanBank","开户银行",false));
		this.add(new ExportFile("humanAccount","银行账户",false));
		this.add(new ExportFile("humanTelephone","电话",false));
		this.add(new ExportFile("humanMobilephone","手机",false));
		this.add(new ExportFile("humanEmail","email",false));
		this.add(new ExportFile("humanHobby","爱好",false));
		this.add(new ExportFile("humanSpeciality","特长",false));
		this.add(new ExportFile("humanSex","性别",false));
		this.add(new ExportFile("humanReligion","宗教信仰",false));
		this.add(new ExportFile("humanParty","政治面貌",false));
		this.add(new ExportFile("humanNationality","国籍",false));
		this.add(new ExportFile("humanRace","民族",false));
		this.add(new ExportFile("humanBirthday","生日",false));
		this.add(new ExportFile("humanBirthplace","出生地",false));
		this.add(new ExportFile("humanAge","年龄",false));
		this.add(new ExportFile("humanEducatedDegree","学历",false));
		this.add(new ExportFile("humanEducatedYears","教育年限",false));
		this.add(new ExportFile("humanEducatedMajor","专业",false));
		this.add(new ExportFile("humanSocietySecurityId","社会保障号码",false));
		this.add(new ExportFile("humanIdCard","身份证号",false));
		this.add(new ExportFile("salaryStandardId","薪酬标准编号",false));
		this.add(new ExportFile("salaryStandardName","薪酬标准",false));     
		this.add(new ExportFile("salarySum","基本薪酬总额",false));
		this.add(new ExportFile("paidSalarySum","实发薪酬总额",false));
		this.add(new ExportFile("majorChangeAmount","调动次数",false));
		this.add(new ExportFile("bonusAmount","激励次数",false));
		this.add(new ExportFile("trainingAmount","培训次数",false));
		this.add(new ExportFile("humanHistroyRecords","个人履历",false));
		this.add(new ExportFile("humanFamilyMembership","家庭关系信息",false));
		this.add(new ExportFile("remark","备注",false));        
		this.add(new ExportFile("fileChangAmount","档案变更累计",false));
		this.add(new ExportFile("register","登记人",false));
		this.add(new ExportFile("registTime","建档时间",false));
		
		return this;
	}
}

⌨️ 快捷键说明

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