|
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.iformall.mapper.WxMsgModelMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxMsgModel">
- <id column="id" jdbcType="BIGINT" property="id"/>
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
- <result column="parent_tenant_id" jdbcType="VARCHAR" property="parentTenantId"/>
- <result column="name" jdbcType="VARCHAR" property="name"/>
- <result column="signature" jdbcType="VARCHAR" property="signature"/>
- <result column="content" jdbcType="VARCHAR" property="content"/>
- <result column="createtime" jdbcType="TIMESTAMP" property="createtime"/>
- <result column="status" jdbcType="INTEGER" property="status"/>
- <result column="reason" jdbcType="INTEGER" property="reason"/>
- <result column="model_id" jdbcType="INTEGER" property="modelId"/>
- <result column="template_type" jdbcType="INTEGER" property="templateType"/>
- <result column="model_code" jdbcType="VARCHAR" property="modelCode"/>
-
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`parent_tenant_id`,`name`,`signature`,`content`,`createtime`,`status`,`reason`,`model_id`,`template_type`,`model_code`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
-
- <if test=" null != id ">
- and `id` = #{id}
- </if>
-
- <if test=" null != tenantId and '' != tenantId">
- and `tenant_id` = #{tenantId}
- </if>
- <if test=" null != parentTenantId and '' != parentTenantId">
- and `parent_tenant_id` = #{parentTenantId}
- </if>
-
- <if test=" null != name and ''!= name">
- and `name` = #{name}
- </if>
-
- <if test=" null != signature ">
- and `signature` = #{signature}
- </if>
-
- <if test=" null != content ">
- and `content` = #{content}
- </if>
-
- <if test=" null != createtime ">
- and `createtime` = #{createtime}
- </if>
-
- <if test=" null != status ">
- and `status` = #{status}
- </if>
- <if test=" null != modelId">
- and `model_id` = #{modelId}
- </if>
- <if test=" null != templateType">
- and `template_type` = #{templateType}
- </if>
- <if test=" null != modelCode">
- and `model_code` = #{modelCode}
- </if>
- <if test=" null != ids ">
- and id in
- <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
- #{idItem}
- </foreach>
- </if>
- <if test=" null != sortColumns">order by ${sortColumns}</if>
- </sql>
-
- <select id="findList" parameterType="com.iformall.domain.po.WxMsgModel" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_msg_model
- <include refid="dynamicWhereConditions"/>
- </select>
-
-
- <select id="findAliYunList" parameterType="com.iformall.domain.po.WxMsgModel" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_msg_model
- where ifnull(model_code,'') != ''
- and `status` = #{status}
- </select>
-
- <select id="findOneByModelId" parameterType="com.iformall.domain.po.WxMsgModel" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_msg_model
- where 1=1
- <if test=" null != modelId">
- and `model_id` = #{modelId}
- </if>
- <if test=" null != tenantId and '' != tenantId">
- and `tenant_id` = #{tenantId}
- </if>
- <if test=" null != parentTenantId and '' != parentTenantId">
- and `parent_tenant_id` = #{parentTenantId}
- </if>
- limit 1
- </select>
-
- <update id="updateByCode" parameterType="com.iformall.domain.po.WxMsgModel">
- update wx_msg_model set status=#{status},reason=#{reason} where `model_code` = #{modelCode}
- </update>
-
- </mapper>
|