You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?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.tc.mapper.AssetOfficialAccountMapper">
|
|
|
|
<update id="deleteById">
|
|
|
|
update asset_official_account
|
|
|
|
set del_flag = '2'
|
|
|
|
where id = #{id}
|
|
|
|
</update>
|
|
|
|
<delete id="deleteIdList" >
|
|
|
|
DELETE FROM asset_official_account
|
|
|
|
WHERE id IN
|
|
|
|
<foreach item="id" index="index" collection="idList" open="(" separator="," close=")">
|
|
|
|
#{id}
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
<select id="findBydwmc" resultType="java.lang.Integer" parameterType="java.lang.String">
|
|
|
|
select count(*)
|
|
|
|
from asset_official_account
|
|
|
|
where ssdw = #{part} and isbf=0 and del_flag=0
|
|
|
|
</select>
|
|
|
|
<select id="page" resultType="com.ruoyi.tc.entity.AssetOfficialAccount">
|
|
|
|
select * from asset_official_account
|
|
|
|
<where>
|
|
|
|
del_flag = '0'
|
|
|
|
<if test="req.gzhmc!=null and req.gzhmc!='' ">
|
|
|
|
and gzhmc like concat('%',#{req.gzhmc},'%')
|
|
|
|
</if>
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
</if>
|
|
|
|
<if test="req.startTime != null ">
|
|
|
|
and create_time >= #{req.startTime}
|
|
|
|
</if>
|
|
|
|
<if test="req.endTime != null">
|
|
|
|
and create_time <= #{req.endTime}
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
order by create_time desc
|
|
|
|
</select>
|
|
|
|
</mapper>
|
|
|
|
|