27 lines
1.1 KiB
XML
27 lines
1.1 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.cool.store.mapper.SignFranchiseMapper">
|
|
<update id="updateAuditByShopId">
|
|
update xfsg_sign_franchise
|
|
set audit_id = #{auditId}
|
|
where shop_id = #{shopId}
|
|
</update>
|
|
<select id="selectByShopId" resultType="com.cool.store.entity.SignFranchiseDO">
|
|
select *
|
|
from xfsg_sign_franchise
|
|
where shop_id = #{shopId}
|
|
order by create_time desc
|
|
limit 1
|
|
</select>
|
|
<select id="selectByShopIds" resultType="com.cool.store.entity.SignFranchiseDO">
|
|
select contract_code,shop_id,contract_start_time,contract_end_time,contract_amount,create_time,partnership_signatory_first,partnership_signatory_second
|
|
from xfsg_sign_franchise
|
|
where 1=1
|
|
<if test="list !=null and list.size >0">
|
|
and shop_id in
|
|
<foreach collection="list" open="(" separator="," close=")" item="item" index="index">
|
|
#{item}
|
|
</foreach>
|
|
</if>
|
|
</select>
|
|
</mapper> |