90 lines
4.2 KiB
XML
90 lines
4.2 KiB
XML
<?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.ruoyi.abuwx.mapper.AbucoderWxappConfigMapper">
|
|
|
|
<resultMap type="AbucoderWxappConfig" id="AbucoderWxappConfigResult">
|
|
<result property="id" column="id" />
|
|
<result property="appid" column="appid" />
|
|
<result property="appSecret" column="app_secret" />
|
|
<result property="state" column="state" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="remark" column="remark" />
|
|
</resultMap>
|
|
|
|
<sql id="selectAbucoderWxappConfigVo">
|
|
select id, appid, app_secret, state, create_by, create_time, update_by, update_time, remark from abucoder_wxapp_config
|
|
</sql>
|
|
|
|
<select id="selectAbucoderWxappConfigList" parameterType="AbucoderWxappConfig" resultMap="AbucoderWxappConfigResult">
|
|
<include refid="selectAbucoderWxappConfigVo"/>
|
|
<where>
|
|
<if test="appid != null and appid != ''"> and appid = #{appid}</if>
|
|
<if test="appSecret != null and appSecret != ''"> and app_secret = #{appSecret}</if>
|
|
<if test="state != null "> and state = #{state}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectAbucoderWxappConfigById" parameterType="Long" resultMap="AbucoderWxappConfigResult">
|
|
<include refid="selectAbucoderWxappConfigVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
<select id="selectAbucoderWxappConfig" resultMap="AbucoderWxappConfigResult">
|
|
<include refid="selectAbucoderWxappConfigVo"/>
|
|
where state = 0
|
|
</select>
|
|
|
|
<insert id="insertAbucoderWxappConfig" parameterType="AbucoderWxappConfig" useGeneratedKeys="true" keyProperty="id">
|
|
insert into abucoder_wxapp_config
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="appid != null">appid,</if>
|
|
<if test="appSecret != null">app_secret,</if>
|
|
<if test="state != null">state,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="remark != null">remark,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="appid != null">#{appid},</if>
|
|
<if test="appSecret != null">#{appSecret},</if>
|
|
<if test="state != null">#{state},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateAbucoderWxappConfig" parameterType="AbucoderWxappConfig">
|
|
update abucoder_wxapp_config
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="appid != null">appid = #{appid},</if>
|
|
<if test="appSecret != null">app_secret = #{appSecret},</if>
|
|
<if test="state != null">state = #{state},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteAbucoderWxappConfigById" parameterType="Long">
|
|
delete from abucoder_wxapp_config where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteAbucoderWxappConfigByIds" parameterType="String">
|
|
delete from abucoder_wxapp_config where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper> |