中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 37f8463032c06236bfd098133c31cda51217b00f
cpzidc-bis/src/main/resources/mapper/bis/IdcNoIndexMapper.xml
@@ -12,7 +12,7 @@
    </resultMap>
    <sql id="selectIdcNoIndexVo">
        select id, tel_no, production_year, index from idc_no_index
        select id, tel_no, production_year, 'index' from idc_no_index
    </sql>
    <select id="selectIdcNoIndexList" parameterType="IdcNoIndex" resultMap="IdcNoIndexResult">
@@ -20,7 +20,7 @@
        <where>  
            <if test="telNo != null  and telNo != ''"> and tel_no = #{telNo}</if>
            <if test="productionYear != null  and productionYear != ''"> and production_year = #{productionYear}</if>
            <if test="index != null  and index != ''"> and index = #{index}</if>
            <if test="index != null  and index != ''"> and 'index' = #{index}</if>
        </where>
    </select>