比對新檔案 |
| | |
| | | package com.pollex.pam.service.dto; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.pollex.pam.enums.ContactStatusEnum; |
| | | |
| | | public class AppointmentCloseDTO{ |
| | | |
| | | // private Long closedInfoId; |
| | | private String policyholderIdentityId; |
| | | private String planCode; |
| | | private Date policyEntryDate; |
| | | private String remark; |
| | | private String closedReason; |
| | | private String closedOtherReason; |
| | | private ContactStatusEnum contactStatus; |
| | | private Long appointmentId; |
| | | |
| | | public String getPolicyholderIdentityId() { |
| | | return policyholderIdentityId; |
| | | } |
| | | public void setPolicyholderIdentityId(String policyholderIdentityId) { |
| | | this.policyholderIdentityId = policyholderIdentityId; |
| | | } |
| | | public String getPlanCode() { |
| | | return planCode; |
| | | } |
| | | public void setPlanCode(String planCode) { |
| | | this.planCode = planCode; |
| | | } |
| | | public Date getPolicyEntryDate() { |
| | | return policyEntryDate; |
| | | } |
| | | public void setPolicyEntryDate(Date policyEntryDate) { |
| | | this.policyEntryDate = policyEntryDate; |
| | | } |
| | | public String getRemark() { |
| | | return remark; |
| | | } |
| | | public void setRemark(String remark) { |
| | | this.remark = remark; |
| | | } |
| | | public String getClosedReason() { |
| | | return closedReason; |
| | | } |
| | | public void setClosedReason(String closedReason) { |
| | | this.closedReason = closedReason; |
| | | } |
| | | public String getClosedOtherReason() { |
| | | return closedOtherReason; |
| | | } |
| | | public void setClosedOtherReason(String closedOtherReason) { |
| | | this.closedOtherReason = closedOtherReason; |
| | | } |
| | | public ContactStatusEnum getContactStatus() { |
| | | return contactStatus; |
| | | } |
| | | public void setContactStatus(ContactStatusEnum contactStatus) { |
| | | this.contactStatus = contactStatus; |
| | | } |
| | | public Long getAppointmentId() { |
| | | return appointmentId; |
| | | } |
| | | public void setAppointmentId(Long appointmentId) { |
| | | this.appointmentId = appointmentId; |
| | | } |
| | | // public Long getClosedInfoId() { |
| | | // return closedInfoId; |
| | | // } |
| | | // public void setClosedInfoId(Long closedInfoId) { |
| | | // this.closedInfoId = closedInfoId; |
| | | // } |
| | | |
| | | |
| | | |
| | | |
| | | } |