Skip to content

Commit 0c69884

Browse files
committed
update
1 parent ea96c87 commit 0c69884

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package kevinGates.packageExample.implement;
2+
3+
import kevinGates.packageExample.User;
4+
5+
public class UsersController {
6+
7+
public static void main(String[] args) {
8+
9+
User user = new User();
10+
11+
user.setId(100);
12+
user.setEmail("[email protected]");
13+
user.setName("Kevin gates");
14+
15+
System.out.println("data="+user.data());
16+
}
17+
}

0 commit comments

Comments
 (0)