| | |
| | | @Entity |
| | | @Table(name = "appointment_customer_view") |
| | | public class AppointmentCustomerView implements Serializable { |
| | | |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column(name = "appointment_id") |
| | | @Id |
| | | private Long id; |
| | | |
| | | |
| | | @Column(name = "phone") |
| | | private String phone; |
| | | |
| | | |
| | | @Column(name = "email") |
| | | private String email; |
| | | |
| | | |
| | | @Column(name = "contact_type") |
| | | private String contactType; |
| | | |
| | | |
| | | @Column(name = "gender") |
| | | private String gender; |
| | | |
| | | |
| | | @Column(name = "age") |
| | | private String age; |
| | | |
| | | |
| | | @Column(name = "job") |
| | | private String job; |
| | | |
| | | |
| | | @Column(name = "requirement") |
| | | private String requirement; |
| | | |
| | | |
| | | @Enumerated(EnumType.STRING) |
| | | @Column(name = "communicate_status") |
| | | private ContactStatusEnum communicateStatus; |
| | | |
| | | |
| | | @Column(name = "hope_contact_time") |
| | | private String hopeContactTime; |
| | | |
| | | |
| | | @Column(name = "other_requirement") |
| | | private String otherRequirement; |
| | | |
| | | |
| | | @Column(name = "appointment_date") |
| | | private Instant appointmentDate; |
| | | |
| | | |
| | | @Column(name = "agent_no") |
| | | private String agentNo; |
| | | |
| | | |
| | | @Column(name = "customer_id") |
| | | private Long customerId; |
| | | |
| | | @Column(name = "name") |
| | | |
| | | @Column(name = "consultant_view_time") |
| | | private Instant consultantViewTime; |
| | | |
| | | @Column(name = "consultant_read_time") |
| | | private Instant consultantReadTime; |
| | | |
| | | @Column(name = "name") |
| | | private String name; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | |
| | | this.customerId = customerId; |
| | | } |
| | | |
| | | public String getName() { |
| | | public Instant getConsultantViewTime() { |
| | | return consultantViewTime; |
| | | } |
| | | |
| | | public void setConsultantViewTime(Instant consultantViewTime) { |
| | | this.consultantViewTime = consultantViewTime; |
| | | } |
| | | |
| | | public Instant getConsultantReadTime() { |
| | | return consultantReadTime; |
| | | } |
| | | |
| | | public void setConsultantReadTime(Instant consultantReadTime) { |
| | | this.consultantReadTime = consultantReadTime; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |