添加数据源参数类

ays
An Yong Shuai 2024-06-27 09:35:36 +08:00
parent ebb669b42c
commit df0c5f403f
3 changed files with 71 additions and 14 deletions

View File

@ -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">{
&quot;customColor&quot;: &quot;&quot;,
&quot;associatedIndex&quot;: 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 />

View File

@ -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;
}

View File

@ -7,4 +7,5 @@ import com.etl.cleaning.domian.pojo.DataItem;
*
*/
public interface ItemService extends IService<DataItem> {
}