| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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.kcim.dao.mapper.ComputeStandProjectCostDetailMapper">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.kcim.dao.model.ComputeStandProjectCostDetail" id="ComputeStandProjectCostDetailMap">
- <result property="id" column="id"/>
- <result property="hospId" column="hosp_id"/>
- <result property="computeDate" column="compute_date"/>
- <result property="projectCostId" column="project_cost_id"/>
- <result property="costColumnCode" column="cost_column_code"/>
- <result property="costColumnType" column="cost_column_type"/>
- <result property="computeResult" column="compute_result"/>
- <result property="computeSingleResult" column="compute_single_result"/>
- <result property="createUser" column="create_user"/>
- <result property="createTime" column="create_time"/>
- <result property="updateUser" column="update_user"/>
- <result property="updateTime" column="update_time"/>
- <result property="deleteUser" column="delete_user"/>
- <result property="deleteTime" column="delete_time"/>
- <result property="delFlag" column="del_flag"/>
- </resultMap>
- <select id="getByProjectCostId" resultType="com.kcim.vo.ComputeProjectCostPageDto">
- SELECT
- a.id as id,
- a.hosp_id as hosp_id,
- a.compute_date as compute_date,
- a.`code` as `code`,
- a.`name` as `name`,
- a.item_type as item_type,
- a.responsibility_code as responsibility_code,
- a.responsibility_name as responsibility_name,
- b.type,
- sum((IF(b.compute_result is null , 0.00,b.compute_result))) as compute_result,
- sum((IF(b.compute_single_result is null , 0.00,b.compute_single_result))) as compute_single_result
- FROM
- compute_stand_project_cost a
- LEFT JOIN compute_stand_project_group_cost_detail b
- ON a.id = b.project_cost_id and b.del_flag = 0
- WHERE
- a.hosp_id = #{hospId,jdbcType=BIGINT}
- AND b.hosp_id= #{hospId,jdbcType=BIGINT}
- AND a.del_flag = 0
- AND a.compute_date = #{computeDate,jdbcType=VARCHAR}
- and b.compute_date = #{computeDate,jdbcType=VARCHAR}
- and b.project_cost_id in
- <foreach collection="items" item="projectCostId" index="index" open="(" close=")" separator=",">
- #{projectCostId}
- </foreach>
- GROUP BY responsibility_code,`code`,item_type,type
- </select>
- </mapper>
|