New Entity Spring Boot

@Entity
public class $NAME$Entity {

    @Id
    @GeneratedValue
    private Long id;

    public $NAME$() {
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }
}


©2020 IntelliJ Live templates