From ecef3df4890be54c1da2a8a4fc1c8c1f50f1c263 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期一, 07 四月 2025 15:41:47 +0800 Subject: [PATCH] 式样代码管理 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmClientAmountDayMapper.xml | 257 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 257 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmClientAmountDayMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmClientAmountDayMapper.xml new file mode 100644 index 0000000..23981d4 --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmClientAmountDayMapper.xml @@ -0,0 +1,257 @@ +<?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.dy.pipIrrGlobal.daoRm.RmClientAmountDayMapper"> + <resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoRm.RmClientAmountDay"> + <!--@mbg.generated--> + <!--@Table rm_client_amount_day--> + <id column="id" jdbcType="BIGINT" property="id" /> + <result column="client_id" jdbcType="BIGINT" property="clientId" /> + <result column="amount" jdbcType="FLOAT" property="amount" /> + <result column="money" jdbcType="FLOAT" property="money" /> + <result column="times" jdbcType="INTEGER" property="times" /> + <result column="dt" jdbcType="DATE" property="dt" /> + <result column="open_dt_last" jdbcType="TIMESTAMP" property="openDtLast" /> + <result column="close_dt_last" jdbcType="TIMESTAMP" property="closeDtLast" /> + <result column="this_amount_last" jdbcType="FLOAT" property="thisAmountLast" /> + <result column="this_money_last" jdbcType="FLOAT" property="thisMoneyLast" /> + <result column="this_time_last" jdbcType="INTEGER" property="thisTimeLast" /> + <result column="rtu_dt_last" jdbcType="TIMESTAMP" property="rtuDtLast" /> + </resultMap> + <sql id="Base_Column_List"> + <!--@mbg.generated--> + id, client_id, amount, money, times, dt, open_dt_last, close_dt_last, this_amount_last, this_money_last, + this_time_last, rtu_dt_last + </sql> + <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> + <!--@mbg.generated--> + select + <include refid="Base_Column_List" /> + from rm_client_amount_day + where id = #{id,jdbcType=BIGINT} + </select> + + <select id="selectByClientAndDate" resultMap="BaseResultMap"> + <!--@mbg.generated--> + select + <include refid="Base_Column_List" /> + from rm_client_amount_day + where client_id = #{clientId,jdbcType=BIGINT} and dt = #{dt,jdbcType=DATE} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> + <!--@mbg.generated--> + delete from rm_client_amount_day + where id = #{id,jdbcType=BIGINT} + </delete> + <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoRm.RmClientAmountDay"> + <!--@mbg.generated--> + insert into rm_client_amount_day (id, client_id, amount, money, times, + dt, open_dt_last, close_dt_last, + this_amount_last, this_money_last, this_time_last, + rtu_dt_last) + values (#{id,jdbcType=BIGINT}, #{clientId,jdbcType=BIGINT}, #{amount,jdbcType=FLOAT}, #{money,jdbcType=FLOAT}, #{times,jdbcType=FLOAT}, + #{dt,jdbcType=DATE}, #{openDtLast,jdbcType=TIMESTAMP}, #{closeDtLast,jdbcType=TIMESTAMP}, + #{thisAmountLast,jdbcType=FLOAT}, #{thisMoneyLast,jdbcType=FLOAT}, #{thisTimeLast,jdbcType=INTEGER}, + #{rtuDtLast,jdbcType=TIMESTAMP}) + </insert> + <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoRm.RmClientAmountDay"> + <!--@mbg.generated--> + insert into rm_client_amount_day + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="id != null"> + id, + </if> + <if test="clientId != null"> + client_id, + </if> + <if test="amount != null"> + amount, + </if> + <if test="money != null"> + money, + </if> + <if test="times != null"> + times, + </if> + <if test="dt != null"> + dt, + </if> + <if test="openDtLast != null"> + open_dt_last, + </if> + <if test="closeDtLast != null"> + close_dt_last, + </if> + <if test="thisAmountLast != null"> + this_amount_last, + </if> + <if test="thisMoneyLast != null"> + this_money_last, + </if> + <if test="thisTimeLast != null"> + this_time_last, + </if> + <if test="rtuDtLast != null"> + rtu_dt_last, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="id != null"> + #{id,jdbcType=BIGINT}, + </if> + <if test="clientId != null"> + #{clientId,jdbcType=BIGINT}, + </if> + <if test="amount != null"> + #{amount,jdbcType=FLOAT}, + </if> + <if test="money != null"> + #{money,jdbcType=FLOAT}, + </if> + <if test="times != null"> + #{times,jdbcType=INTEGER}, + </if> + <if test="dt != null"> + #{dt,jdbcType=DATE}, + </if> + <if test="openDtLast != null"> + #{openDtLast,jdbcType=TIMESTAMP}, + </if> + <if test="closeDtLast != null"> + #{closeDtLast,jdbcType=TIMESTAMP}, + </if> + <if test="thisAmountLast != null"> + #{thisAmountLast,jdbcType=FLOAT}, + </if> + <if test="thisMoneyLast != null"> + #{thisMoneyLast,jdbcType=FLOAT}, + </if> + <if test="thisTimeLast != null"> + #{thisTimeLast,jdbcType=INTEGER}, + </if> + <if test="rtuDtLast != null"> + #{rtuDtLast,jdbcType=TIMESTAMP}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoRm.RmClientAmountDay"> + <!--@mbg.generated--> + update rm_client_amount_day + <set> + <if test="clientId != null"> + client_id = #{clientId,jdbcType=BIGINT}, + </if> + <if test="amount != null"> + amount = #{amount,jdbcType=FLOAT}, + </if> + <if test="money != null"> + money = #{money,jdbcType=FLOAT}, + </if> + <if test="times != null"> + times = #{times,jdbcType=INTEGER}, + </if> + <if test="dt != null"> + dt = #{dt,jdbcType=DATE}, + </if> + <if test="openDtLast != null"> + open_dt_last = #{openDtLast,jdbcType=TIMESTAMP}, + </if> + <if test="closeDtLast != null"> + close_dt_last = #{closeDtLast,jdbcType=TIMESTAMP}, + </if> + <if test="thisAmountLast != null"> + this_amount_last = #{thisAmountLast,jdbcType=FLOAT}, + </if> + <if test="thisMoneyLast != null"> + this_money_last = #{thisMoneyLast,jdbcType=FLOAT}, + </if> + <if test="thisTimeLast != null"> + this_time_last = #{thisTimeLast,jdbcType=INTEGER}, + </if> + <if test="rtuDtLast != null"> + rtu_dt_last = #{rtuDtLast,jdbcType=TIMESTAMP}, + </if> + </set> + where id = #{id,jdbcType=BIGINT} + </update> + <update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoRm.RmClientAmountDay"> + <!--@mbg.generated--> + update rm_client_amount_day + set client_id = #{clientId,jdbcType=BIGINT}, + amount = #{amount,jdbcType=FLOAT}, + money = #{money,jdbcType=FLOAT}, + times = #{times,jdbcType=INTEGER}, + dt = #{dt,jdbcType=DATE}, + open_dt_last = #{openDtLast,jdbcType=TIMESTAMP}, + close_dt_last = #{closeDtLast,jdbcType=TIMESTAMP}, + this_amount_last = #{thisAmountLast,jdbcType=FLOAT}, + this_money_last = #{thisMoneyLast,jdbcType=FLOAT}, + this_time_last = #{thisTimeLast,jdbcType=INTEGER}, + rtu_dt_last = #{rtuDtLast,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=BIGINT} + </update> + <!--鏍规嵁鎸囧畾鏉′欢鑾峰彇璁板綍鎬绘暟--> + <select id="getRecordCount" resultType="java.lang.Long"> + select count(*) + from rm_client_amount_day rcad + Left join se_client sc on sc.id = rcad.client_id + <where> + <if test="clientName != null and clientName != '' "> + and sc.name like CONCAT('%',#{clientName,jdbcType=VARCHAR},'%') + </if> + <if test="clientId != null and clientId != ''"> + and rcad.client_id = #{clientId} + </if> + <if test="startDt != null"> + and rcad.dt >= #{startDt,jdbcType=DATE} + </if> + <if test="endDt != null"> + and rcad.dt <= #{endDt,jdbcType=DATE} + </if> + </where> + </select> + <!--鏍规嵁鎸囧畾鏉′欢鑾峰彇璁板綍--> + <select id="getClientAmountDayHistory" resultType="com.dy.pipIrrGlobal.voRm.VoClientAmountDay"> + select + CAST(rcad.client_id AS char)AS clientId, + rcad.amount as amount, + rcad.money as money, + rcad.times as times, + rcad.dt as dt, + rcad.open_dt_last as openDtLast, + rcad.close_dt_last as closeDtLast, + rcad.this_amount_last as thisAmountLast, + rcad.this_money_last as thisMoneyLast, + rcad.this_time_last as thisTimeLast, + rcad.rtu_dt_last as rtuDtLast, + sc.name as clientName + from rm_client_amount_day rcad + Left join se_client sc on sc.id = rcad.client_id + <where> + <if test="clientName != null and clientName != '' "> + and sc.name like CONCAT('%',#{clientName,jdbcType=VARCHAR},'%') + </if> + <if test="clientId != null and clientId != ''"> + and rcad.client_id = #{clientId} + </if> + <if test="startDt != null"> + and rcad.dt >= #{startDt,jdbcType=DATE} + </if> + <if test="endDt != null"> + and rcad.dt <= #{endDt,jdbcType=DATE} + </if> + </where> + ORDER BY rcad.id DESC + <if test="pageCurr != null and pageSize != null"> + LIMIT ${(pageCurr-1)*pageSize}, ${pageSize} + </if> + </select> + + + <select id="statisticsByClient" resultType="com.dy.pipIrrGlobal.voSt.VoClientAmountStatistics"> + select client_id, sum(amount) as amount, sum(money) as money, sum(times) as times + from rm_client_amount_day + where id <![CDATA[>=]]> #{startId,jdbcType=BIGINT} and id <![CDATA[<]]> #{endId,jdbcType=BIGINT} + group by client_id + </select> + +</mapper> \ No newline at end of file -- Gitblit v1.8.0