huangjiayang
2025-05-14 410e73ecfe28f4794dfd3e48a3372bff1ba33c70
aps-modules/aps-system/src/main/resources/mapper/system/SysDictTypeMapper.xml
@@ -24,13 +24,13 @@
       <include refid="selectDictTypeVo"/>
      <where>
          <if test="dictName != null and dictName != ''">
            AND dict_name like concat('%', cast(#{dictName} as varchar), '%')
            AND dict_name like '%' || #{dictName} || '%'
         </if>
         <if test="status != null and status != ''">
            AND status = #{status}
         </if>
         <if test="dictType != null and dictType != ''">
            AND dict_type like concat('%', cast(#{dictType} as varchar), '%')
            AND dict_type like '%' || #{dictType} || '%'
         </if>
         <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
            and date_format(create_time,'%Y%m%d') &gt;= date_format(#{params.beginTime},'%Y%m%d')