类说明 :
| 10 | * 类说明 : |
| 11 | */ |
| 12 | @TableName("config") |
| 13 | public class ConfigEntity implements Serializable{ |
| 14 | private 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected