| | |
| | | /** |
| | | * 配置id |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | @TableId(value = "config_id", type = IdType.AUTO) |
| | | private Long configId; |
| | | /** |
| | | * 删除标记 |
| | | */ |
| | |
| | | /** |
| | | * 配置类型 |
| | | */ |
| | | private Integer type; |
| | | @TableField("config_type") |
| | | private Integer configType; |
| | | /** |
| | | * 配置键 |
| | | */ |
| | | private String key; |
| | | @TableField("config_key") |
| | | private String configKey; |
| | | /** |
| | | * 配置名 |
| | | */ |
| | | private String name; |
| | | @TableField("config_name") |
| | | private String configName; |
| | | /** |
| | | * 配置值 |
| | | */ |
| | | private String value; |
| | | @TableField("config_value") |
| | | private String configValue; |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | |
| | | |
| | | @Override |
| | | protected Serializable pkVal() { |
| | | return this.id; |
| | | return this.configId; |
| | | } |
| | | |
| | | } |