@@ -221,4 +221,12 @@ DEL_DATE,DEL_USER,DEL_USERNAME,IS_DEL,SEQN,PAR_CLASSIFY,PAR_NUMBER
from t_sys_param where IS_DEL = '0' AND PAR_CLASSIFY IS NOT NULL
GROUP BY PAR_CLASSIFY
</select>
+ <select id="getParamNumberRepeat" resultType="java.lang.Integer" parameterType="TSysParam">
+ select count(1) cun from t_sys_param where is_del = '0'
+ and PAR_NUMBER = #{parNumber}
+ <if test="parId != null and parId!='' ">
+ and PAR_ID = #{parId}
+ </if>
+
+ </select>
</mapper>