package com.farriver.bwf.data.transferobject.viewmodel.pa; import com.farriver.bwf.data.transferobject.viewmodel.om.OMOrganizationPositionViewModel; import java.util.Date; import java.util.List; public class PAEmployeeViewModel { private List positions; public List getPositions() { return positions; } public void setPositions(List positions) { this.positions = positions; } private String id; private String code; private String name; private Integer status; private Boolean gender; private String idcard; private String email; private String account; private String password; private String firstname; private String lastname; private String cellphone; private String telephone; private String address; private String userface; private String computerlevel; private String englishlevel; private String driverlicensetype; private String householdtype; private String homeaddress; private String residenceaddress; private String fertilitystatus; private String maritalstatus; private String politics; private String nation; private String nativeplace; private Boolean isdeleted; private String remark; private Date createtime; private Date updatetime; private String titleid; private String titlecode; private String titlename; public String getTitleid() { return titleid; } public void setTitleid(String titleid) { this.titleid = titleid; } public String getTitlecode() { return titlecode; } public void setTitlecode(String titlecode) { this.titlecode = titlecode; } public String getTitlename() { return titlename; } public void setTitlename(String titlename) { this.titlename = titlename; } public String getId() { return id; } public void setId(String id) { this.id = id == null ? null : id.trim(); } public String getCode() { return code; } public void setCode(String code) { this.code = code == null ? null : code.trim(); } public String getName() { return name; } public void setName(String name) { this.name = name == null ? null : name.trim(); } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Boolean getGender() { return gender; } public void setGender(Boolean gender) { this.gender = gender; } public String getIdcard() { return idcard; } public void setIdcard(String idcard) { this.idcard = idcard == null ? null : idcard.trim(); } public String getEmail() { return email; } public void setEmail(String email) { this.email = email == null ? null : email.trim(); } public String getAccount() { return account; } public void setAccount(String account) { this.account = account == null ? null : account.trim(); } public String getPassword() { return password; } public void setPassword(String password) { this.password = password == null ? null : password.trim(); } public String getFirstname() { return firstname; } public void setFirstname(String firstname) { this.firstname = firstname == null ? null : firstname.trim(); } public String getLastname() { return lastname; } public void setLastname(String lastname) { this.lastname = lastname == null ? null : lastname.trim(); } public String getCellphone() { return cellphone; } public void setCellphone(String cellphone) { this.cellphone = cellphone == null ? null : cellphone.trim(); } public String getTelephone() { return telephone; } public void setTelephone(String telephone) { this.telephone = telephone == null ? null : telephone.trim(); } public String getAddress() { return address; } public void setAddress(String address) { this.address = address == null ? null : address.trim(); } public String getUserface() { return userface; } public void setUserface(String userface) { this.userface = userface == null ? null : userface.trim(); } public String getComputerlevel() { return computerlevel; } public void setComputerlevel(String computerlevel) { this.computerlevel = computerlevel == null ? null : computerlevel.trim(); } public String getEnglishlevel() { return englishlevel; } public void setEnglishlevel(String englishlevel) { this.englishlevel = englishlevel == null ? null : englishlevel.trim(); } public String getDriverlicensetype() { return driverlicensetype; } public void setDriverlicensetype(String driverlicensetype) { this.driverlicensetype = driverlicensetype == null ? null : driverlicensetype.trim(); } public String getHouseholdtype() { return householdtype; } public void setHouseholdtype(String householdtype) { this.householdtype = householdtype == null ? null : householdtype.trim(); } public String getHomeaddress() { return homeaddress; } public void setHomeaddress(String homeaddress) { this.homeaddress = homeaddress == null ? null : homeaddress.trim(); } public String getResidenceaddress() { return residenceaddress; } public void setResidenceaddress(String residenceaddress) { this.residenceaddress = residenceaddress == null ? null : residenceaddress.trim(); } public String getFertilitystatus() { return fertilitystatus; } public void setFertilitystatus(String fertilitystatus) { this.fertilitystatus = fertilitystatus == null ? null : fertilitystatus.trim(); } public String getMaritalstatus() { return maritalstatus; } public void setMaritalstatus(String maritalstatus) { this.maritalstatus = maritalstatus == null ? null : maritalstatus.trim(); } public String getPolitics() { return politics; } public void setPolitics(String politics) { this.politics = politics == null ? null : politics.trim(); } public String getNation() { return nation; } public void setNation(String nation) { this.nation = nation == null ? null : nation.trim(); } public String getNativeplace() { return nativeplace; } public void setNativeplace(String nativeplace) { this.nativeplace = nativeplace == null ? null : nativeplace.trim(); } public Boolean getIsdeleted() { return isdeleted; } public void setIsdeleted(Boolean isdeleted) { this.isdeleted = isdeleted; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark == null ? null : remark.trim(); } public Date getCreatetime() { return createtime; } public void setCreatetime(Date createtime) { this.createtime = createtime; } public Date getUpdatetime() { return updatetime; } public void setUpdatetime(Date updatetime) { this.updatetime = updatetime; } }