MCPcopy Create free account
hub / github.com/YuLin-Coder/No830yiyongwulixue / ConfigEntity

Class ConfigEntity

src/main/java/com/entity/ConfigEntity.java:12–53  ·  view source on GitHub ↗

类说明 :

Source from the content-addressed store, hash-verified

10* 类说明 :
11*/
12@TableName("config")
13public class ConfigEntity implements Serializable{
14private static final long serialVersionUID = 1L;
15
16 @TableId(type = IdType.AUTO)
17 private Integer id;
18
19 /**
20 * key
21 */
22 private String name;
23
24 /**
25 * value
26 */
27 private String value;
28
29 public Integer getId() {
30 return id;
31 }
32
33 public void setId(Integer id) {
34 this.id = id;
35 }
36
37 public String getName() {
38 return name;
39 }
40
41 public void setName(String name) {
42 this.name = name;
43 }
44
45 public String getValue() {
46 return value;
47 }
48
49 public void setValue(String value) {
50 this.value = value;
51 }
52
53}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected