| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- package com.kingdee.eas.custom.wamke.syncdata.dto;
- import java.util.List;
- public class MobileAttachAssembleDto {
-
- /**
- * 身份证
- */
- private List<MobileAttachDto> idCard;
-
- /**
- * 银行卡
- */
- private List<MobileAttachDto> bankCard;
-
- /**
- * 入职登录
- */
- private List<MobileAttachDto> entryRegistration;
-
- /**
- * 健康
- */
- private List<MobileAttachDto> health;
-
- /**
- * 安全
- */
- private List<MobileAttachDto> safe;
-
- /**
- * 劳动合同
- */
- private List<MobileAttachDto> contract;
-
- /**
- * 手持
- */
- private List<MobileAttachDto> inHand;
-
- /*
- * 其他
- */
- private List<MobileAttachDto> other;
-
- /**
- * 投保证明
- */
- private List<MobileAttachDto> insuranceProve;
- /**
- * 行为规范
- */
- private List<MobileAttachDto> behavioralNorm;
-
- /**
- * 训练清单
- */
- private List<MobileAttachDto> training;
-
- /**
- * 保洁员管理规范附件
- */
- private List<MobileAttachDto> managementFile;
-
- //推荐激励诚信书
- private List<MobileAttachDto> recommendStimulate;
-
- //上岗承诺书
- private List<MobileAttachDto> promiseCommitment;
-
- //
- // public void setBehavioralNorm(List<MobileAttachDto> behavioralNorm) {
- // this.behavioralNorm = behavioralNorm;
- // }
- //
- // public List<MobileAttachDto> getBehavioralNorm() {
- // return behavioralNorm;
- // }
- //
- //
- // public void setTraining(List<MobileAttachDto> training) {
- // this.training = training;
- // }
- //
- // public List<MobileAttachDto> getTraining() {
- // return training;
- // }
- //
- // public void setInsuranceProve(List<MobileAttachDto> insuranceProve) {
- // this.insuranceProve = insuranceProve;
- // }
- //
- // public List<MobileAttachDto> getInsuranceProve() {
- // return insuranceProve;
- // }
-
- public void setIdCard(List<MobileAttachDto> idCard) {
- this.idCard = idCard;
- }
- public List<MobileAttachDto> getIdCard() {
- return idCard;
- }
- public void setBankCard(List<MobileAttachDto> bankCard) {
- this.bankCard = bankCard;
- }
- public List<MobileAttachDto> getBankCard() {
- return bankCard;
- }
- public void setEntryRegistration(List<MobileAttachDto> entryRegistration) {
- this.entryRegistration = entryRegistration;
- }
- public List<MobileAttachDto> getEntryRegistration() {
- return entryRegistration;
- }
- public void setHealth(List<MobileAttachDto> health) {
- this.health = health;
- }
- public List<MobileAttachDto> getHealth() {
- return health;
- }
- public void setSafe(List<MobileAttachDto> safe) {
- this.safe = safe;
- }
- public List<MobileAttachDto> getSafe() {
- return safe;
- }
- public void setContract(List<MobileAttachDto> contract) {
- this.contract = contract;
- }
- public List<MobileAttachDto> getContract() {
- return contract;
- }
- public void setInHand(List<MobileAttachDto> inHand) {
- this.inHand = inHand;
- }
- public List<MobileAttachDto> getInHand() {
- return inHand;
- }
- public void setOther(List<MobileAttachDto> other) {
- this.other = other;
- }
- public List<MobileAttachDto> getOther() {
- return other;
- }
-
- public List<MobileAttachDto> getManagemenetFile() {
- return managementFile;
- }
-
- public void setManagemenetFile(List<MobileAttachDto> file ){
- this.managementFile = file;
- }
- public void setTraining(List<MobileAttachDto> training) {
- this.training = training;
- }
- public List<MobileAttachDto> getTraining() {
- return training;
- }
- public void setBehavioralNorm(List<MobileAttachDto> behavioralNorm) {
- this.behavioralNorm = behavioralNorm;
- }
- public List<MobileAttachDto> getBehavioralNorm() {
- return behavioralNorm;
- }
- public void setInsuranceProve(List<MobileAttachDto> insuranceProve) {
- this.insuranceProve = insuranceProve;
- }
- public List<MobileAttachDto> getInsuranceProve() {
- return insuranceProve;
- }
- public List<MobileAttachDto> getRecommendStimulate() {
- return recommendStimulate;
- }
-
- public void setRecommendStimulate(List<MobileAttachDto> recommendStimulate){
- this.recommendStimulate = recommendStimulate;
- }
-
- public List<MobileAttachDto> getPromiseCommitment() {
- return promiseCommitment;
- }
-
- public void setPromiseCommitment(List<MobileAttachDto> promiseCommitment){
- this.promiseCommitment = promiseCommitment;
- }
- }
|