package com.goafanti.personnel.bo; import java.util.Calendar; import java.util.Date; public class OutPersonnelListBo { private Integer id; private Integer doorId; private String name; private Integer status; private Integer system; private String company; private String depName; private String jobsName; private Integer lvl; private String starName; private String jobNature; private String jobNatureRemarks; private String entryTimes; private String promotionTimes; private Date birthday; private String birthdays; private Date entryTime; private Integer marriage; private Integer sex; private Integer son; private Integer girl; private Integer politicalOutlook; private Integer education; private String school; private String major; private String title; private String promotionRemarks; private String promotionTime; private String contractStart; private String contractEnd; private String mobile; private String fixedTel; private String idCard; private String certificationAuthority; private Integer residenceProvince; private Integer residenceCity; private Integer residenceArea; private String residenceAddress; private Integer nativePlaceProvince; private Integer nativePlaceCity; private Integer nowProvince; private Integer nowCity; private Integer nowArea; private String nowAddress; private String emergencyContact; private String emergencyMobile; private String quitTime; private Integer workingYear; private Integer age; private Integer month; private String insuranceStartTimes; private String insuranceEndTimes; private String fundStartTimes; private String fundEndTimes; private Integer employeeId; private String rpName; private String rcName; private String raName; private String nppName; private String npcName; private String npName; private String ncName; private String naName; public String getRpName() { return rpName; } public void setRpName(String rpName) { this.rpName = rpName; } public String getRcName() { return rcName; } public void setRcName(String rcName) { this.rcName = rcName; } public String getRaName() { return raName; } public void setRaName(String raName) { this.raName = raName; } public String getNppName() { return nppName; } public void setNppName(String nppName) { this.nppName = nppName; } public String getNpcName() { return npcName; } public void setNpcName(String npcName) { this.npcName = npcName; } public String getNpName() { return npName; } public void setNpName(String npName) { this.npName = npName; } public String getNcName() { return ncName; } public void setNcName(String ncName) { this.ncName = ncName; } public String getNaName() { return naName; } public void setNaName(String naName) { this.naName = naName; } public String getInsuranceStartTimes() { return insuranceStartTimes; } public void setInsuranceStartTimes(String insuranceStartTimes) { this.insuranceStartTimes = insuranceStartTimes; } public String getInsuranceEndTimes() { return insuranceEndTimes; } public void setInsuranceEndTimes(String insuranceEndTimes) { this.insuranceEndTimes = insuranceEndTimes; } public String getFundStartTimes() { return fundStartTimes; } public void setFundStartTimes(String fundStartTimes) { this.fundStartTimes = fundStartTimes; } public String getFundEndTimes() { return fundEndTimes; } public void setFundEndTimes(String fundEndTimes) { this.fundEndTimes = fundEndTimes; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getDoorId() { return doorId; } public void setDoorId(Integer doorId) { this.doorId = doorId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Integer getSystem() { return system; } public void setSystem(Integer system) { this.system = system; } public String getCompany() { return company; } public void setCompany(String company) { this.company = company; } public String getJobsName() { return jobsName; } public void setJobsName(String jobsName) { this.jobsName = jobsName; } public Integer getLvl() { return lvl; } public void setLvl(Integer lvl) { this.lvl = lvl; } public String getStarName() { return starName; } public void setStarName(String starName) { this.starName = starName; } public String getEntryTimes() { return entryTimes; } public void setEntryTimes(String entryTimes) { this.entryTimes = entryTimes; } public String getPromotionTimes() { return promotionTimes; } public void setPromotionTimes(String promotionTimes) { this.promotionTimes = promotionTimes; } public Date getBirthday() { return birthday; } public void setBirthday(Date birthday) { this.birthday = birthday; } public String getBirthdays() { return birthdays; } public void setBirthdays(String birthdays) { this.birthdays = birthdays; } public Date getEntryTime() { return entryTime; } public void setEntryTime(Date entryTime) { this.entryTime = entryTime; } public Integer getSex() { return sex; } public void setSex(Integer sex) { this.sex = sex; } public Integer getSon() { return son; } public void setSon(Integer son) { this.son = son; } public Integer getGirl() { return girl; } public void setGirl(Integer girl) { this.girl = girl; } public Integer getPoliticalOutlook() { return politicalOutlook; } public String getPoliticalOutlookName() { if (politicalOutlook!=null) { if (politicalOutlook==0) { return "群众"; }else if (politicalOutlook==1) { return "中共预备党员"; }else if (politicalOutlook==2) { return "中共党员"; }else if (politicalOutlook==3) { return "致公党党员"; } } return ""; } public void setPoliticalOutlook(Integer politicalOutlook) { this.politicalOutlook = politicalOutlook; } public Integer getEducation() { return education; } public String getEducationName() { if(education!=null) { if(education==0)return "高中/中专"; else if(education==1)return "专科/高职"; else if(education==2)return "本科"; else if(education==3)return "研究生"; else if(education==4)return "硕士"; else if(education==5)return "博士"; } return ""; } public void setEducation(Integer education) { this.education = education; } public String getSchool() { return school; } public void setSchool(String school) { this.school = school; } public String getMajor() { return major; } public void setMajor(String major) { this.major = major; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getPromotionRemarks() { return promotionRemarks; } public void setPromotionRemarks(String promotionRemarks) { this.promotionRemarks = promotionRemarks; } public String getPromotionTime() { return promotionTime; } public void setPromotionTime(String promotionTime) { this.promotionTime = promotionTime; } public String getContractStart() { return contractStart; } public void setContractStart(String contractStart) { this.contractStart = contractStart; } public String getContractEnd() { return contractEnd; } public void setContractEnd(String contractEnd) { this.contractEnd = contractEnd; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getFixedTel() { return fixedTel; } public void setFixedTel(String fixedTel) { this.fixedTel = fixedTel; } public String getIdCard() { return idCard; } public void setIdCard(String idCard) { this.idCard = idCard; } public String getCertificationAuthority() { return certificationAuthority; } public void setCertificationAuthority(String certificationAuthority) { this.certificationAuthority = certificationAuthority; } public Integer getResidenceProvince() { return residenceProvince; } public void setResidenceProvince(Integer residenceProvince) { this.residenceProvince = residenceProvince; } public Integer getResidenceCity() { return residenceCity; } public void setResidenceCity(Integer residenceCity) { this.residenceCity = residenceCity; } public Integer getResidenceArea() { return residenceArea; } public void setResidenceArea(Integer residenceArea) { this.residenceArea = residenceArea; } public String getResidenceAddress() { return residenceAddress; } public void setResidenceAddress(String residenceAddress) { this.residenceAddress = residenceAddress; } public Integer getNativePlaceProvince() { return nativePlaceProvince; } public void setNativePlaceProvince(Integer nativePlaceProvince) { this.nativePlaceProvince = nativePlaceProvince; } public Integer getNativePlaceCity() { return nativePlaceCity; } public void setNativePlaceCity(Integer nativePlaceCity) { this.nativePlaceCity = nativePlaceCity; } public Integer getNowProvince() { return nowProvince; } public void setNowProvince(Integer nowProvince) { this.nowProvince = nowProvince; } public Integer getNowCity() { return nowCity; } public void setNowCity(Integer nowCity) { this.nowCity = nowCity; } public Integer getNowArea() { return nowArea; } public void setNowArea(Integer nowArea) { this.nowArea = nowArea; } public String getNowAddress() { return nowAddress; } public void setNowAddress(String nowAddress) { this.nowAddress = nowAddress; } public String getQuitTime() { return quitTime; } public void setQuitTime(String quitTime) { this.quitTime = quitTime; } public Integer getWorkingYear() { if (this.workingYear==null&& this.entryTime!=null) { int wy=getAgeByBirth(this.entryTime); return 0