MCPcopy Create free account
hub / github.com/Thecosy/Ice-chat / User

Class User

src/main/java/com/ninespace/sqlite/entity/User.java:14–29  ·  view source on GitHub ↗

@program: spring-data-sqlite @description: @author: hewei @date: 2021-10-21 17:42

Source from the content-addressed store, hash-verified

12 * @date: 2021-10-21 17:42
13 **/
14@Data
15@TableName(schema = "main",value = "c_user")
16public class User {
17
18 @TableId(value = "id",type = IdType.AUTO)
19 private Integer id;
20 private String name;
21 private Long phone;
22 private String addr;
23 private String gender;
24 private String intro;
25 private String profile;
26 private String email;
27 private String username;
28 private String password;
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected