提交数据源查询列表
parent
462f660481
commit
8c6ce2eaa7
|
@ -18,10 +18,12 @@
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>cloud-common-core</artifactId>
|
<artifactId>cloud-common-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -71,5 +71,8 @@ public class Source extends BaseEntity {
|
||||||
@Excel(name ="密码")
|
@Excel(name ="密码")
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
|
@Excel(name ="备注")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,6 +75,8 @@ public class SourceReq extends BaseEntity {
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "SourceReq{" +
|
return "SourceReq{" +
|
||||||
|
|
|
@ -60,6 +60,7 @@
|
||||||
<if test="maxLinkNum != null "> and max_link_num = #{maxLinkNum}</if>
|
<if test="maxLinkNum != null "> and max_link_num = #{maxLinkNum}</if>
|
||||||
<if test="maxWaitTime != null "> and max_wait_time = #{maxWaitTime}</if>
|
<if test="maxWaitTime != null "> and max_wait_time = #{maxWaitTime}</if>
|
||||||
<if test="maxWaitTimes != null "> and max_wait_times = #{maxWaitTimes}</if>
|
<if test="maxWaitTimes != null "> and max_wait_times = #{maxWaitTimes}</if>
|
||||||
|
<if test="remark != null "> and remark = #{remark}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue