heheng
2025-10-15 a4f1e1a9b97f7606347ba1b6a5c5957c3fc28a59
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>