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.
24 lines
482 B
24 lines
482 B
package com.example.webproject.com.Pojo;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class account {
|
|
private String txl_account;
|
|
private String txl_password;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "account{" +
|
|
"txl_account='" + txl_account + '\'' +
|
|
", txl_password='" + txl_password + '\'' +
|
|
'}';
|
|
}
|
|
|
|
|
|
}
|