2024-05-21 01:33:46 +08:00
|
|
|
<?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.aizuda.snailjob.template.datasource.persistence.mapper.ServerNodeMapper">
|
|
|
|
|
2024-05-21 15:16:04 +08:00
|
|
|
<select id="selectActivePodCount"
|
2024-05-21 01:33:46 +08:00
|
|
|
resultType="com.aizuda.snailjob.template.datasource.persistence.dataobject.ActivePodQuantityResponseDO">
|
|
|
|
SELECT node_type AS nodeType,
|
|
|
|
COUNT(*) AS total
|
2024-05-21 12:54:48 +08:00
|
|
|
FROM sj_server_node
|
2024-05-21 01:33:46 +08:00
|
|
|
${ew.customSqlSegment}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
</mapper>
|