结算记录

This commit is contained in:
2025-05-10 19:03:59 +08:00
parent 9239d7fa7a
commit 820f1763bd
20 changed files with 1086 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?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.greenorange.promotion.mapper.FundsChangeMapper">
<resultMap id="BaseResultMap" type="com.greenorange.promotion.model.entity.FundsChange">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="projectName" column="projectName" jdbcType="VARCHAR"/>
<result property="changeAmount" column="changeAmount" jdbcType="DECIMAL"/>
<result property="currentAmount" column="currentAmount" jdbcType="DECIMAL"/>
<result property="userId" column="userId" jdbcType="BIGINT"/>
<result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,projectName,changeAmount,
currentAmount,userId,isDelete,
createTime,updateTime
</sql>
</mapper>

View File

@ -0,0 +1,26 @@
<?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.greenorange.promotion.mapper.ProjectSettlementMapper">
<resultMap id="BaseResultMap" type="com.greenorange.promotion.model.entity.ProjectSettlement">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="projectDetailName" column="projectDetailName" jdbcType="VARCHAR"/>
<result property="settlementQuantity" column="settlementQuantity" jdbcType="INTEGER"/>
<result property="settlementRevenue" column="settlementRevenue" jdbcType="DECIMAL"/>
<result property="workTime" column="workTime" jdbcType="TIMESTAMP"/>
<result property="settlementTime" column="settlementTime" jdbcType="TIMESTAMP"/>
<result property="promoCodeRequestRecordId" column="promoCodeRequestRecordId" jdbcType="BIGINT"/>
<result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,projectDetailName,settlementQuantity,
settlementRevenue,workTime,settlementTime,
promoCodeRequestRecordId,isDelete,createTime,
updateTime
</sql>
</mapper>