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