|
- <?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.WxMsgValidationcodeModelTenantMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxMsgValidationcodeModelTenant">
- <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="model_id" jdbcType="BIGINT" property="modelId" />
- <result column="signature" jdbcType="VARCHAR" property="signature" />
- <result column="content" jdbcType="VARCHAR" property="content" />
- <result column="model_code" jdbcType="VARCHAR" property="modelCode" />
- <result column="sms_channel" jdbcType="INTEGER" property="smsChannel" />
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`parent_tenant_id`,`model_id`,`signature`,`content`,`model_code`,`sms_channel`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
- <if test=" null != id "> and `id` = #{id} </if>
- <if test=" null != tenantId "> and `tenant_id` = #{tenantId} </if>
- <if test=" null != modelId "> and `model_id` = #{modelId} </if>
- <if test=" null != signature "> and `signature` = #{signature} </if>
- <if test=" null != content "> and `content` = #{content} </if>
- <if test=" null != modelCode "> and `model_code` = #{modelCode} </if>
- <if test=" null != smsChannel "> and `sms_channel` = #{smsChannel} </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.WxMsgValidationcodeModelTenant" resultMap="BaseResultMap">
- select <include refid="allColumns" /> from wx_msg_validationcode_model_tenant
- <include refid="dynamicWhereConditions" />
- </select>
-
- <select id="findByModelId" parameterType="com.iformall.domain.po.WxMsgValidationcodeModelTenant" resultMap="BaseResultMap">
- select <include refid="allColumns" /> from wx_msg_validationcode_model_tenant
- where `tenant_id` = #{tenantId} and `model_id` = #{modelId} and sms_channel = #{smsChannel}
- </select>
- </mapper>
|