|
|
@@ -10,6 +10,7 @@ |
|
|
<result column="liaison_sex" jdbcType="TINYINT" property="liaisonrSex"/> |
|
|
<result column="liaison_sex" jdbcType="TINYINT" property="liaisonrSex"/> |
|
|
<result column="liaison_phone" jdbcType="VARCHAR" property="liaisonPhone"/> |
|
|
<result column="liaison_phone" jdbcType="VARCHAR" property="liaisonPhone"/> |
|
|
<result column="liaison_email" jdbcType="VARCHAR" property="liaisonEmail"/> |
|
|
<result column="liaison_email" jdbcType="VARCHAR" property="liaisonEmail"/> |
|
|
|
|
|
<result column="title" jdbcType="VARCHAR" property="title"/> |
|
|
<result column="pictures" jdbcType="VARCHAR" property="pictures"/> |
|
|
<result column="pictures" jdbcType="VARCHAR" property="pictures"/> |
|
|
<result column="explains" jdbcType="VARCHAR" property="explains"/> |
|
|
<result column="explains" jdbcType="VARCHAR" property="explains"/> |
|
|
<result column="remark" jdbcType="VARCHAR" property="remark"/> |
|
|
<result column="remark" jdbcType="VARCHAR" property="remark"/> |
|
|
@@ -21,7 +22,7 @@ |
|
|
|
|
|
|
|
|
<sql id="allColumns"> |
|
|
<sql id="allColumns"> |
|
|
`id`,`tenant_id`,`parent_tenant_id`, `user_id`, `liaison_man`, `liaison_sex`, `liaison_phone`, `liaison_email`, |
|
|
`id`,`tenant_id`,`parent_tenant_id`, `user_id`, `liaison_man`, `liaison_sex`, `liaison_phone`, `liaison_email`, |
|
|
`pictures`, `explains`, `remark`, `handle_status`, `handle_id`, `create_date`,`update_date` |
|
|
|
|
|
|
|
|
`pictures`,`title`, `explains`, `remark`, `handle_status`, `handle_id`, `create_date`,`update_date` |
|
|
</sql> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<sql id="dynamicWhereConditions"> |
|
|
<sql id="dynamicWhereConditions"> |
|
|
@@ -58,6 +59,10 @@ |
|
|
and `liaison_sex` = #{liaisonSex} |
|
|
and `liaison_sex` = #{liaisonSex} |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
|
|
|
|
|
|
<if test=" null != title "> |
|
|
|
|
|
and `title` like concat('%', #{title},'%') |
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
<if test=" null != handleStatus "> |
|
|
<if test=" null != handleStatus "> |
|
|
and `handle_status` = #{handleStatus} |
|
|
and `handle_status` = #{handleStatus} |
|
|
</if> |
|
|
</if> |
|
|
|