123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?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.ruoyi.powerdistribution.mapper.PdmReportAppointmentDayMapper">
- <resultMap type="PdmReportAppointmentDay" id="PdmReportAppointmentDayResult">
- <result property="id" column="id" />
- <result property="company" column="company" />
- <result property="reportDate" column="report_date" />
- <result property="bossSum" column="boss_sum" />
- <result property="manageSum" column="manage_sum" />
- <result property="absentSum" column="absent_sum" />
- <result property="absentDetail" column="absent_detail" />
- <result property="absentBadSum" column="absent_bad_sum" />
- <result property="absentBadDetail" column="absent_bad_detail" />
- <result property="createBy" column="create_by" />
- <result property="createTime" column="create_time" />
- <result property="updateBy" column="update_by" />
- <result property="updateTime" column="update_time" />
- </resultMap>
- <sql id="selectPdmReportAppointmentDayVo">
- select id, company, report_date, boss_sum, manage_sum, absent_sum, absent_detail, absent_bad_sum, absent_bad_detail, create_by, create_time, update_by, update_time from pdm_report_appointment_day
- </sql>
- <select id="selectPdmReportAppointmentDayList" parameterType="PdmReportAppointmentDay" resultMap="PdmReportAppointmentDayResult">
- select * from (
- <include refid="selectPdmReportAppointmentDayVo"/>
- <where>
- <if test="company != null and company != ''"> and company = #{company}</if>
- <if test="reportDate != null and reportDate != ''"> and report_date = #{reportDate}</if>
- <if test="bossSum != null "> and boss_sum = #{bossSum}</if>
- <if test="manageSum != null "> and manage_sum = #{manageSum}</if>
- <if test="absentSum != null "> and absent_sum = #{absentSum}</if>
- <if test="absentDetail != null and absentDetail != ''"> and absent_detail = #{absentDetail}</if>
- <if test="absentBadSum != null "> and absent_bad_sum = #{absentBadSum}</if>
- <if test="absentBadDetail != null and absentBadDetail != ''"> and absent_bad_detail = #{absentBadDetail}</if>
- </where>
- UNION
- SELECT
- sum(id) as id,
- '总计' as company,
- report_date,
- sum(ifnull(boss_sum,0)) boss_sum,
- sum(ifnull(manage_sum,0)) manage_sum,
- sum(ifnull(absent_sum,0)) absent_sum,
- null absent_detail,
- sum(ifnull(absent_bad_sum,0)) absent_bad_sum,
- null absent_bad_detail,
- null create_by ,
- null create_time,
- null update_by,
- null update_time FROM
- pdm_report_appointment_day
- <where>
- <if test="company != null and company != ''"> and company = #{company}</if>
- <if test="reportDate != null and reportDate != ''"> and report_date = #{reportDate}</if>
- <if test="bossSum != null "> and boss_sum = #{bossSum}</if>
- <if test="manageSum != null "> and manage_sum = #{manageSum}</if>
- <if test="absentSum != null "> and absent_sum = #{absentSum}</if>
- <if test="absentDetail != null and absentDetail != ''"> and absent_detail = #{absentDetail}</if>
- <if test="absentBadSum != null "> and absent_bad_sum = #{absentBadSum}</if>
- <if test="absentBadDetail != null and absentBadDetail != ''"> and absent_bad_detail = #{absentBadDetail}</if>
- </where>
- GROUP BY report_date) a order by id asc
- </select>
- <select id="selectPdmReportAppointmentDayById" parameterType="Long" resultMap="PdmReportAppointmentDayResult">
- <include refid="selectPdmReportAppointmentDayVo"/>
- where id = #{id}
- </select>
- <insert id="insertPdmReportAppointmentDay" parameterType="PdmReportAppointmentDay" useGeneratedKeys="true" keyProperty="id">
- insert into pdm_report_appointment_day
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="company != null">company,</if>
- <if test="reportDate != null">report_date,</if>
- <if test="bossSum != null">boss_sum,</if>
- <if test="manageSum != null">manage_sum,</if>
- <if test="absentSum != null">absent_sum,</if>
- <if test="absentDetail != null">absent_detail,</if>
- <if test="absentBadSum != null">absent_bad_sum,</if>
- <if test="absentBadDetail != null">absent_bad_detail,</if>
- <if test="createBy != null">create_by,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateBy != null">update_by,</if>
- <if test="updateTime != null">update_time,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="company != null">#{company},</if>
- <if test="reportDate != null">#{reportDate},</if>
- <if test="bossSum != null">#{bossSum},</if>
- <if test="manageSum != null">#{manageSum},</if>
- <if test="absentSum != null">#{absentSum},</if>
- <if test="absentDetail != null">#{absentDetail},</if>
- <if test="absentBadSum != null">#{absentBadSum},</if>
- <if test="absentBadDetail != null">#{absentBadDetail},</if>
- <if test="createBy != null">#{createBy},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateBy != null">#{updateBy},</if>
- <if test="updateTime != null">#{updateTime},</if>
- </trim>
- </insert>
- <update id="updatePdmReportAppointmentDay" parameterType="PdmReportAppointmentDay">
- update pdm_report_appointment_day
- <trim prefix="SET" suffixOverrides=",">
- <if test="company != null">company = #{company},</if>
- <if test="reportDate != null">report_date = #{reportDate},</if>
- <if test="bossSum != null">boss_sum = #{bossSum},</if>
- <if test="manageSum != null">manage_sum = #{manageSum},</if>
- <if test="absentSum != null">absent_sum = #{absentSum},</if>
- <if test="absentDetail != null">absent_detail = #{absentDetail},</if>
- <if test="absentBadSum != null">absent_bad_sum = #{absentBadSum},</if>
- <if test="absentBadDetail != null">absent_bad_detail = #{absentBadDetail},</if>
- <if test="createBy != null">create_by = #{createBy},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateBy != null">update_by = #{updateBy},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- </trim>
- where id = #{id}
- </update>
- <delete id="deletePdmReportAppointmentDayById" parameterType="Long">
- delete from pdm_report_appointment_day where id = #{id}
- </delete>
- <delete id="deletePdmReportAppointmentDayByIds" parameterType="String">
- delete from pdm_report_appointment_day where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- </mapper>
|