2022-04-14 10:10:40 +08:00
|
|
|
<?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="io.renren.modules.processForm.dao.TAbilityApplicationDao">
|
|
|
|
|
|
|
|
<update id="updateInstanceId">
|
|
|
|
update t_ability_application set instance_id = #{instanceId} where id = #{id}
|
|
|
|
</update>
|
|
|
|
|
2022-04-20 16:51:15 +08:00
|
|
|
<select id="getByInstanceId" resultType="io.renren.modules.processForm.entity.TAbilityApplicationEntity">
|
|
|
|
SELECT
|
|
|
|
t1.*
|
|
|
|
FROM
|
|
|
|
t_ability_application t1
|
|
|
|
WHERE
|
|
|
|
t1.instance_id = #{instanceId}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="getByBusinessKey" resultType="io.renren.modules.processForm.entity.TAbilityApplicationEntity">
|
|
|
|
SELECT
|
|
|
|
t1.*
|
|
|
|
FROM
|
|
|
|
t_ability_application t1
|
|
|
|
WHERE
|
|
|
|
t1.id = #{businessKey}
|
|
|
|
</select>
|
2022-04-14 10:10:40 +08:00
|
|
|
</mapper>
|