You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
798 B
54 lines
798 B
package com.entity;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import com.baomidou.mybatisplus.annotations.TableId;
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
|
|
/**
|
|
* 类说明 :
|
|
*/
|
|
@TableName("config")
|
|
public class ConfigEntity implements Serializable{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
|
|
|
/**
|
|
* key
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* value
|
|
*/
|
|
private String value;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
}
|