add new files

This commit is contained in:
2025-01-08 23:19:45 +08:00
parent f9788e9a7d
commit bd871d68e0
3 changed files with 60 additions and 0 deletions

8
Test.java Normal file
View File

@@ -0,0 +1,8 @@
package com.powernode.spring6;
public class Test {
public static void main(String[] args) {
Employee bruce = Employee.staticTest(2,"bulusi",24);
bruce.setBoss(true);
}
}