refactor(flink-query): 调试和部署 Flink 查询模块

This commit is contained in:
2023-05-05 17:01:30 +08:00
parent 0d3d9049f7
commit c8cb1a1c40
6 changed files with 53 additions and 21 deletions

View File

@@ -0,0 +1,28 @@
package com.lanyuanxiaoyao.service.configuration.entity.flink;
/**
* Key Value 映射
*
* @author lanyuanxiaoyao
* @date 2023-05-05
*/
public class FlinkKeyValue {
private String key;
private String value;
public String getKey() {
return key;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return "FlinkKeyValue{" +
"key='" + key + '\'' +
", value='" + value + '\'' +
'}';
}
}