liusheng
2025-02-26 718bd7efbc0d959d0b9050c34be2fd639a1f74b6
smartor/src/main/resources/mapper/smartor/BaseDictOperationMapper.xml
@@ -28,7 +28,26 @@
    </resultMap>
    <sql id="selectBaseDictOperationVo">
        select id, opid, opcode, opdesc, incitypecode, incitypedesc, oplevelcode, opleveldesc, opposition, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pguid, guid, pid
        select id,
               opid,
               opcode,
               opdesc,
               incitypecode,
               incitypedesc,
               oplevelcode,
               opleveldesc,
               opposition,
               del_flag,
               update_by,
               update_time,
               create_by,
               create_time,
               isupload,
               upload_time,
               orgid,
               pguid,
               guid,
               pid
        from base_dict_operation
    </sql>
@@ -43,7 +62,7 @@
                            and opcode = #{opcode}
                        </if>
                        <if test="opdesc != null  and opdesc != ''">
                            and opdesc = #{opdesc}
                and opdesc like concat('%', #{opdesc}, '%')
                        </if>
                        <if test="incitypecode != null  and incitypecode != ''">
                            and incitypecode = #{incitypecode}
@@ -257,8 +276,6 @@
            #{id}
        </foreach>
    </update>
</mapper>