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.
20 lines
415 B
20 lines
415 B
package com.example.demo.bean;
|
|
|
|
import lombok.Getter;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
@Getter
|
|
@Entity
|
|
public class UserBankIdentify {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private String userName;
|
|
private String bankAccount;
|
|
private short bankAccountIdentify;
|
|
|
|
}
|