From a3716f72066d25d745f4d5103ff23a553c3e102b Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 17 二月 2022 11:41:19 +0800 Subject: [PATCH] Merge branch 'sit' into uat --- pamapi/src/main/java/com/pollex/pam/service/dto/ConsultantEditDTO.java | 139 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 139 insertions(+), 0 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/ConsultantEditDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/ConsultantEditDTO.java new file mode 100644 index 0000000..0489a1d --- /dev/null +++ b/pamapi/src/main/java/com/pollex/pam/service/dto/ConsultantEditDTO.java @@ -0,0 +1,139 @@ +package com.pollex.pam.service.dto; + +import java.util.List; + +import com.pollex.pam.enums.GenderEnum; + +public class ConsultantEditDTO { + +// private Long id; + private String name; + private List<String> expertise; + private String title; + private String role; + private String serveArea; + private GenderEnum gender; + private String phoneNumber; + private String companyAddress; + private Long seniorityYear; + private Long seniorityMonth; + private String concept; + private String experiences; + private String awards; + private String communicationStyle; + private String photoBase64; + private String photoFileName; + private String agentNo; + +// public Long getId() { +// return id; +// } +// public void setId(Long id) { +// this.id = id; +// } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public List<String> getExpertise() { + return expertise; + } + public void setExpertise(List<String> expertise) { + this.expertise = expertise; + } + public String getTitle() { + return title; + } + public void setTitle(String title) { + this.title = title; + } + public String getRole() { + return role; + } + public void setRole(String role) { + this.role = role; + } + public String getServeArea() { + return serveArea; + } + public void setServeArea(String serveArea) { + this.serveArea = serveArea; + } + public GenderEnum getGender() { + return gender; + } + public void setGender(GenderEnum gender) { + this.gender = gender; + } + public String getPhoneNumber() { + return phoneNumber; + } + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + public String getCompanyAddress() { + return companyAddress; + } + public void setCompanyAddress(String companyAddress) { + this.companyAddress = companyAddress; + } + public Long getSeniorityYear() { + return seniorityYear; + } + public void setSeniorityYear(Long seniorityYear) { + this.seniorityYear = seniorityYear; + } + public Long getSeniorityMonth() { + return seniorityMonth; + } + public void setSeniorityMonth(Long seniorityMonth) { + this.seniorityMonth = seniorityMonth; + } + public String getConcept() { + return concept; + } + public void setConcept(String concept) { + this.concept = concept; + } + public String getExperiences() { + return experiences; + } + public void setExperiences(String experiences) { + this.experiences = experiences; + } + public String getAwards() { + return awards; + } + public void setAwards(String awards) { + this.awards = awards; + } + public String getCommunicationStyle() { + return communicationStyle; + } + public void setCommunicationStyle(String communicationStyle) { + this.communicationStyle = communicationStyle; + } + public String getPhotoBase64() { + return photoBase64; + } + public void setPhotoBase64(String photoBase64) { + this.photoBase64 = photoBase64; + } + public String getPhotoFileName() { + return "consultant_"+this.getAgentNo()+".jpg"; + } + public String getAgentNo() { + return agentNo; + } + public void setAgentNo(String agentNo) { + this.agentNo = agentNo; + } + + + + + + +} -- Gitblit v1.8.0