mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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.panzhihua.service_community.dao.ComActIntegralUserChangeMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.panzhihua.service_dangjian.entity.ComActIntegralUserChange">
        <id column="id" property="id" />
        <result column="user_id" property="userId" />
        <result column="integral_id" property="integralId" />
        <result column="community_id" property="communityId" />
        <result column="integral_sum_top" property="integralSumTop" />
        <result column="integral_sum_back" property="integralSumBack" />
        <result column="integral_available_sum_top" property="integralAvailableSumTop" />
        <result column="integral_available_sum_back" property="integralAvailableSumBack" />
        <result column="integral_frozen_sum_top" property="integralFrozenSumTop" />
        <result column="integral_frozen_sum_back" property="integralFrozenSumBack" />
        <result column="integral_party_top" property="integralPartyTop" />
        <result column="integral_party_back" property="integralPartyBack" />
        <result column="integral_available_party_top" property="integralAvailablePartyTop" />
        <result column="integral_available_party_back" property="integralAvailablePartyBack" />
        <result column="integral_frozen_party_top" property="integralFrozenPartyTop" />
        <result column="integral_frozen_party_back" property="integralFrozenPartyBack" />
        <result column="integral_volunteer_top" property="integralVolunteerTop" />
        <result column="integral_volunteer_back" property="integralVolunteerBack" />
        <result column="integral_available_volunteer_top" property="integralAvailableVolunteerTop" />
        <result column="integral_available_volunteer_back" property="integralAvailableVolunteerBack" />
        <result column="integral_frozen_volunteer_top" property="integralFrozenVolunteerTop" />
        <result column="integral_frozen_volunteer_back" property="integralFrozenVolunteerBack" />
        <result column="integral_resident_top" property="integralResidentTop" />
        <result column="integral_resident_back" property="integralResidentBack" />
        <result column="integral_available_resident_top" property="integralAvailableResidentTop" />
        <result column="integral_available_resident_back" property="integralAvailableResidentBack" />
        <result column="integral_frozen_resident_top" property="integralFrozenResidentTop" />
        <result column="integral_frozen_resident_back" property="integralFrozenResidentBack" />
        <result column="service_id" property="serviceId" />
        <result column="create_at" property="createAt" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, user_id, integral_id, community_id, integral_sum_top, integral_sum_back, integral_available_sum_top, integral_available_sum_back, integral_frozen_sum_top, integral_frozen_sum_back, integral_party_top, integral_party_back, integral_available_party_top, integral_available_party_back, integral_frozen_party_top, integral_frozen_party_back, integral_volunteer_top, integral_volunteer_back, integral_available_volunteer_top, integral_available_volunteer_back, integral_frozen_volunteer_top, integral_frozen_volunteer_back, integral_resident_top, integral_resident_back, integral_available_resident_top, integral_available_resident_back, integral_frozen_resident_top, integral_frozen_resident_back, service_id, create_at
    </sql>
 
</mapper>