From ff225eded880cea74563368c8c18483efc85ab28 Mon Sep 17 00:00:00 2001 From: shiyunteng <shiyunteng@example.com> Date: 星期五, 22 五月 2026 17:29:36 +0800 Subject: [PATCH] feat:统计相关接口 --- platformx-business-finance-biz/src/main/resources/mapper/PaymentSlipMapper.xml | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/platformx-business-finance-biz/src/main/resources/mapper/PaymentSlipMapper.xml b/platformx-business-finance-biz/src/main/resources/mapper/PaymentSlipMapper.xml new file mode 100644 index 0000000..0568405 --- /dev/null +++ b/platformx-business-finance-biz/src/main/resources/mapper/PaymentSlipMapper.xml @@ -0,0 +1,24 @@ +<?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.by4cloud.platformx.business.mapper.PaymentSlipMapper"> + + <resultMap id="paymentSlipMap" type="com.by4cloud.platformx.business.entity.PaymentSlip"> + <id property="id" column="id"/> + <result property="compId" column="comp_id"/> + <result property="busGuestId" column="bus_guest_id"/> + <result property="busGuestName" column="bus_guest_name"/> + <result property="businessType" column="business_type"/> + <result property="gatheringAccount" column="gathering_account"/> + <result property="payType" column="pay_type"/> + <result property="paymentAccount" column="payment_account"/> + <result property="paymentAmount" column="payment_amount"/> + <result property="paymentNumber" column="payment_number"/> + <result property="paymentTime" column="payment_time"/> + <result property="createBy" column="create_by"/> + <result property="createTime" column="create_time"/> + <result property="updateBy" column="update_by"/> + <result property="updateTime" column="update_time"/> + <result property="delFlag" column="del_flag"/> + </resultMap> +</mapper> \ No newline at end of file -- Gitblit v1.9.1