package itn.let.mjo.rejt.service; import com.fasterxml.jackson.annotation.JsonProperty; import itn.com.cmm.ComDefaultVO; public class MjonRejectVO extends ComDefaultVO { private static final long serialVersionUID = 1L; private String rejectLogId; @JsonProperty("Phone") private String phone; @JsonProperty("Insert_date") private String insertDate; @JsonProperty("Call_id") private String callId; private String regDate; public String getRejectLogId() { return rejectLogId; } public void setRejectLogId(String rejectLogId) { this.rejectLogId = rejectLogId; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getInsertDate() { return insertDate; } public void setInsertDate(String insertDate) { this.insertDate = insertDate; } public String getCallId() { return callId; } public void setCallId(String callId) { this.callId = callId; } public String getRegDate() { return regDate; } public void setRegDate(String regDate) { this.regDate = regDate; } }