heheng
2025-10-20 e7202ce274c9ee51a1617069e42c5b886d21991a
signature/src/main/resources/mapper/sign/SignatureTypeMapper.xml
@@ -18,10 +18,7 @@
    </sql>
    <delete id="deleteTypeIds">
        update signature_type set del_flag = 2 where id in
        <foreach item="id" collection="array" open="(" separator="," close=")">
            #{id}
        </foreach>
        update signature_type set del_flag = 2 where id= #{ids}
    </delete>
@@ -34,4 +31,9 @@
            </if>
        </where>
    </select>
    <select id="selectByTypeName" resultType="com.gkhy.sign.entity.SignatureType">
        <include refid="selectType"/>
        where type_name =#{typeName} and del_flag = 0
    </select>
</mapper>