Added UserEntity.java to the project

This commit is contained in:
Hello Jelly
2025-10-14 14:35:13 +02:00
parent 8769532797
commit 1ecdc74429
3 changed files with 15 additions and 15 deletions

View File

@@ -1,14 +0,0 @@
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
SpringApplication.run(DemoApplication.class, args);
}
}

View File

@@ -7,6 +7,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class DemoApplication { public class DemoApplication {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Start application3");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

@@ -0,0 +1,13 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.example.demo.domain;
/**
*
* @author student
*/
public class UserEntity {
}