UserEntity Commit

This commit is contained in:
IgorNiemiec
2025-10-14 11:10:00 +02:00
parent b25420f569
commit 77491c4c0e
3 changed files with 10 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Develop_1 Console");
UserEntity.Show();
SpringApplication.run(DemoApplication.class, args);
}

View File

@@ -0,0 +1,8 @@
public class UserEntity
{
public static void Show()
{
println("Show");
}
}