MCPcopy Create free account
hub / github.com/LisenCoding/cangku / ConfigEntity

Class ConfigEntity

boot/src/main/java/com/entity/ConfigEntity.java:14–55  ·  view source on GitHub ↗

@author yangliyuan @version 创建时间:2024年3月28日 下午8:36:05 类说明 :

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected