22 lines
944 B
XML
22 lines
944 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
|
<mapper namespace="com.xhpc.general.mapper.XhpcDictBizQuantityCheckMapper">
|
||
|
|
<select id="countCodeRows" resultType="java.lang.Integer">
|
||
|
|
select count(code) from xhpc_dict_biz where code=#{code}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="countSameParentChildValueColumns" resultType="java.lang.Integer">
|
||
|
|
select count(dict_biz_id) from xhpc_dict_biz where parent_id=#{id} and dict_value=#{key}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="countSameParentChildKeyColumns" resultType="java.lang.Integer">
|
||
|
|
select count(dict_biz_id) from xhpc_dict_biz where parent_id=#{id} and dict_key=#{key}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="countParentName" resultType="java.lang.Integer">
|
||
|
|
select count(dict_biz_id) from xhpc_dict_biz where parent_id=0 and dict_value=#{name}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|