|
|
|
@@ -1,72 +1,68 @@ |
|
|
|
<?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.WxLevelConfigMapper"> |
|
|
|
<resultMap id="BaseResultMap" type="com.iformall.domain.po.WxLevelConfig"> |
|
|
|
<id column="id" jdbcType="BIGINT" property="id" /> |
|
|
|
<result column="points" jdbcType="INTEGER" property="points" /> |
|
|
|
<result column="level" jdbcType="VARCHAR" property="level" /> |
|
|
|
<result column="description" jdbcType="VARCHAR" property="description" /> |
|
|
|
<result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> |
|
|
|
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
<sql id="allColumns"> |
|
|
|
<resultMap id="BaseResultMap" type="com.iformall.domain.po.WxLevelConfig"> |
|
|
|
<id column="id" jdbcType="BIGINT" property="id"/> |
|
|
|
<result column="points" jdbcType="INTEGER" property="points"/> |
|
|
|
<result column="level" jdbcType="VARCHAR" property="level"/> |
|
|
|
<result column="description" jdbcType="VARCHAR" property="description"/> |
|
|
|
<result column="create_date" jdbcType="TIMESTAMP" property="createDate"/> |
|
|
|
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/> |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
<sql id="allColumns"> |
|
|
|
`id`,`points`,`level`,`description`,`create_date`,`tenant_id` |
|
|
|
</sql> |
|
|
|
|
|
|
|
<sql id="dynamicWhereConditions"> |
|
|
|
where 1 = 1 |
|
|
|
|
|
|
|
<if test=" null != id "> |
|
|
|
and `id` = #{id} |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != points "> |
|
|
|
and `points` = #{points} |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != level "> |
|
|
|
and `level` like concat('%', #{level},'%') |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != description "> |
|
|
|
and `description` like concat('%', #{description},'%') |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != createDate "> |
|
|
|
and `create_date` = #{createDate} |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != tenantId "> |
|
|
|
and `tenant_id` = #{tenantId} |
|
|
|
|
|
|
|
</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.WxLevelConfig" resultMap="BaseResultMap"> |
|
|
|
select <include refid="allColumns" /> from wx_level_config |
|
|
|
<include refid="dynamicWhereConditions" /> |
|
|
|
</select> |
|
|
|
|
|
|
|
<delete id="deleteAll"> |
|
|
|
delete from wx_level_config; |
|
|
|
</delete> |
|
|
|
<sql id="dynamicWhereConditions"> |
|
|
|
where 1 = 1 |
|
|
|
|
|
|
|
<if test=" null != id "> |
|
|
|
and `id` = #{id} |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != points "> |
|
|
|
and `points` = #{points} |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != level "> |
|
|
|
and `level` like concat('%', #{level},'%') |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != description "> |
|
|
|
and `description` like concat('%', #{description},'%') |
|
|
|
</if> |
|
|
|
|
|
|
|
<select id="getLevel" parameterType="com.iformall.domain.po.WxLevelConfig" resultType="String"> |
|
|
|
<if test=" null != createDate "> |
|
|
|
and `create_date` = #{createDate} |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test=" null != tenantId "> |
|
|
|
and `tenant_id` = #{tenantId} |
|
|
|
</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.WxLevelConfig" resultMap="BaseResultMap"> |
|
|
|
select |
|
|
|
<include refid="allColumns"/> |
|
|
|
from wx_level_config |
|
|
|
<include refid="dynamicWhereConditions"/> |
|
|
|
</select> |
|
|
|
|
|
|
|
<delete id="deleteAll" parameterType="com.iformall.domain.po.WxLevelConfig"> |
|
|
|
delete from wx_level_config where `tenant_id` = #{tenantId}; |
|
|
|
</delete> |
|
|
|
|
|
|
|
<select id="getLevel" parameterType="com.iformall.domain.po.WxLevelConfig" resultType="String"> |
|
|
|
SELECT `level` FROM `wx_level_config` where tenant_id=#{tenantId} and points <= #{points} ORDER BY points desc LIMIT 1 |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper> |