提交数据源查询列表

master
lwj 2024-08-22 16:50:19 +08:00
parent 462f660481
commit 8c6ce2eaa7
4 changed files with 8 additions and 0 deletions

View File

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

View File

@ -71,5 +71,8 @@ public class Source extends BaseEntity {
@Excel(name ="密码") @Excel(name ="密码")
private String password; private String password;
@Excel(name ="备注")
private String remark;
} }

View File

@ -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{" +

View File

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