陈昶聿
3 天以前 d2d33d9e10b6a68b84a43a1b970a94246ffdf801
ruoyi-system/src/main/resources/mapper/system/SysDictTypeMapper.xml
@@ -24,7 +24,10 @@
   <select id="selectDictTypeList" parameterType="SysDictType" resultMap="SysDictTypeResult">
       <include refid="selectDictTypeVo"/>
      <where>
      where 1=1
      <if test="orgid != null and orgid != ''">
         AND orgid = #{orgid}
      </if>
          <if test="dictName != null and dictName != ''">
            AND dict_name like concat('%', #{dictName}, '%')
         </if>
@@ -40,7 +43,6 @@
         <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
            and date_format(create_time,'%y%m%d') &lt;= date_format(#{params.endTime},'%y%m%d')
         </if>
       </where>
   </select>
   <select id="selectDictTypeAll" resultMap="SysDictTypeResult">