Commit 1d59079a by 墨竹

Merge remote-tracking branch 'origin/developer' into developer

parents 78e0997a 842ba47e
package com.gic.haoban.manage.api.dto;
import java.io.Serializable;
public class CommonMQDTO implements Serializable {
/**
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
*/
private static final long serialVersionUID = -5681421708810402425L;
private int type ;
private String params ;
public int getType() {
return type;
}
public String getParams() {
return params;
}
public void setType(int type) {
this.type = type;
}
public void setParams(String params) {
this.params = params;
}
}
......@@ -126,7 +126,7 @@
<if test="null != linkType">
and link_type = #{linkType}
</if>
and status_flag = 1
and status_flag = 1 order by create_time desc
limit 20
</select>
......@@ -144,7 +144,7 @@
<if test="null != linkType">
and link_type = #{linkType}
</if>
and status_flag = 1
and status_flag = 1 order by create_time desc
</select>
<select id="queryPageRelationList" resultMap="result-map-tabHaobanHmLink">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment