You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
package com.example.webproject.com.Pojo;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class user_data {
|
|
private String txl_account;
|
|
private String txl_name;
|
|
private String txl_contact_phone_number;
|
|
private String txl_email;
|
|
private String txl_address;
|
|
private String txl_social_media_account;
|
|
private String txl_company_name;
|
|
private String txl_position;
|
|
private String txl_remarks;
|
|
private String txl_birthday;
|
|
private String txl_hobbies;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "user_data{" +
|
|
"txl_account='" + txl_account + '\'' +
|
|
", txl_name='" + txl_name + '\'' +
|
|
", txl_contact_phone_number='" + txl_contact_phone_number + '\'' +
|
|
", txl_email='" + txl_email + '\'' +
|
|
", txl_address='" + txl_address + '\'' +
|
|
", txl_social_media_account='" + txl_social_media_account + '\'' +
|
|
", txl_company_name='" + txl_company_name + '\'' +
|
|
", txl_position='" + txl_position + '\'' +
|
|
", txl_remarks='" + txl_remarks + '\'' +
|
|
", txl_birthday='" + txl_birthday + '\'' +
|
|
", txl_hobbies='" + txl_hobbies + '\'' +
|
|
'}';
|
|
}
|
|
|
|
}
|