物管理后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
465 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.thing.carbontrack.outbound.mapper.IotCarbonOutboundConfigMapper">
  4. <select id="getOutboundNumByMidAndPrCode" resultType="Long">
  5. SELECT
  6. sum(num)
  7. FROM
  8. iot_carbon_outbound_config
  9. WHERE m_id= #{mId} and pr_code =#{prCode}
  10. </select>
  11. </mapper>