添加数据源参数类
parent
ebb669b42c
commit
df0c5f403f
|
@ -4,13 +4,9 @@
|
|||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="e53020f6-f301-415a-a26a-d22b9ac05907" name="更改" comment="批量删除">
|
||||
<change afterPath="$PROJECT_DIR$/etl-cleaning/src/main/java/com/etl/cleaning/domian/pojo/DataItem.java" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.idea/shelf/___.xml" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.idea/shelf/在变基之前未提交的更改_[更改]/shelved.patch" beforeDir="false" />
|
||||
<list default="true" id="e53020f6-f301-415a-a26a-d22b9ac05907" name="更改" comment="数据源详情架构搭建">
|
||||
<change afterPath="$PROJECT_DIR$/etl-cleaning/src/main/java/com/etl/cleaning/domian/request/InsertItemRequest.java" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/etl-cleaning/src/main/java/com/etl/cleaning/controller/TypeController.java" beforeDir="false" afterPath="$PROJECT_DIR$/etl-cleaning/src/main/java/com/etl/cleaning/controller/TypeController.java" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/etl-cleaning/src/main/java/com/etl/cleaning/enums/EnumMsg.java" beforeDir="false" afterPath="$PROJECT_DIR$/etl-cleaning/src/main/java/com/etl/cleaning/enums/EnumMsg.java" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
|
@ -48,6 +44,9 @@
|
|||
</MavenGeneralSettings>
|
||||
</option>
|
||||
</component>
|
||||
<component name="PerforceDirect.Settings">
|
||||
<option name="CHARSET" value="无" />
|
||||
</component>
|
||||
<component name="ProjectColorInfo">{
|
||||
"customColor": "",
|
||||
"associatedIndex": 3
|
||||
|
@ -193,7 +192,7 @@
|
|||
<workItem from="1719275575437" duration="19423000" />
|
||||
<workItem from="1719316378874" duration="2751000" />
|
||||
<workItem from="1719362671659" duration="17607000" />
|
||||
<workItem from="1719448230070" duration="2028000" />
|
||||
<workItem from="1719448230070" duration="3328000" />
|
||||
</task>
|
||||
<task id="LOCAL-00001" summary="安勇帅提交测试">
|
||||
<option name="closed" value="true" />
|
||||
|
@ -275,7 +274,15 @@
|
|||
<option name="project" value="LOCAL" />
|
||||
<updated>1719386687325</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="11" />
|
||||
<task id="LOCAL-00011" summary="数据源详情架构搭建">
|
||||
<option name="closed" value="true" />
|
||||
<created>1719450897583</created>
|
||||
<option name="number" value="00011" />
|
||||
<option name="presentableId" value="LOCAL-00011" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1719450897583</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="12" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
|
@ -292,11 +299,6 @@
|
|||
<option value="origin/ays" />
|
||||
</option>
|
||||
</RecentGroup>
|
||||
<RecentGroup>
|
||||
<option name="FILTER_VALUES">
|
||||
<option value="origin/main" />
|
||||
</option>
|
||||
</RecentGroup>
|
||||
<RecentGroup>
|
||||
<option name="FILTER_VALUES">
|
||||
<option value="origin/lzz" />
|
||||
|
@ -307,6 +309,11 @@
|
|||
<option value="origin/lzm" />
|
||||
</option>
|
||||
</RecentGroup>
|
||||
<RecentGroup>
|
||||
<option name="FILTER_VALUES">
|
||||
<option value="origin/main" />
|
||||
</option>
|
||||
</RecentGroup>
|
||||
<RecentGroup>
|
||||
<option name="FILTER_VALUES">
|
||||
<option value="ays" />
|
||||
|
@ -352,7 +359,8 @@
|
|||
<MESSAGE value="数据源类型列表展示" />
|
||||
<MESSAGE value="接口优化" />
|
||||
<MESSAGE value="批量删除" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="批量删除" />
|
||||
<MESSAGE value="数据源详情架构搭建" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="数据源详情架构搭建" />
|
||||
</component>
|
||||
<component name="XSLT-Support.FileAssociations.UIState">
|
||||
<expand />
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
package com.etl.cleaning.domian.request;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 添加数据源参数
|
||||
*/
|
||||
@Data
|
||||
public class InsertItemRequest {
|
||||
/**
|
||||
* 数据源藐视
|
||||
*/
|
||||
private String itemDesc;
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
private String itemUsername;
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
private String itemPass;
|
||||
/**
|
||||
* 端口
|
||||
*/
|
||||
private String itemPort;
|
||||
/**
|
||||
* 连接数据库名称
|
||||
*/
|
||||
private String itemName;
|
||||
/**
|
||||
* 额外配置
|
||||
*/
|
||||
private String itemYaml;
|
||||
/**
|
||||
* 连接状态
|
||||
*/
|
||||
private Long itemStatue;
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String itemBank;
|
||||
/**
|
||||
* 连接地址
|
||||
*/
|
||||
private String place;
|
||||
}
|
|
@ -7,4 +7,5 @@ import com.etl.cleaning.domian.pojo.DataItem;
|
|||
* 数据源详情
|
||||
*/
|
||||
public interface ItemService extends IService<DataItem> {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue