|
@@ -13,6 +13,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="coin" column="coin" />
|
|
|
<result property="coinType" column="coin_type" />
|
|
|
<result property="coinGive" column="coin_give" />
|
|
|
+ <result property="platformService" column="platform_service" />
|
|
|
+ <result property="platformServiceRate" column="platform_service_rate" />
|
|
|
<result property="isAgent" column="is_agent" />
|
|
|
<result property="isDelete" column="is_delete" />
|
|
|
<result property="isWater" column="is_water" />
|
|
@@ -35,7 +37,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectAppUsersChargeVo">
|
|
|
- select id, addtime, after_coin, agent_id, ambient, coin, coin_type, coin_give, is_agent, is_delete, is_water, money, opt_type, opt_user, orderno, pid, pid_level1, pid_level2, pid_level3, pid_level4, remarks, rule_id, status, touid, trade_no, type, uid from app_users_charge
|
|
|
+ select id, addtime, after_coin, agent_id, ambient, coin, coin_type, coin_give,platform_service_rate,platform_service, is_agent, is_delete, is_water, money, opt_type, opt_user, orderno, pid, pid_level1, pid_level2, pid_level3, pid_level4, remarks, rule_id, status, touid, trade_no, type, uid from app_users_charge
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectAppUsersChargeList" parameterType="com.game.business.domain.AppUsersCharge" resultMap="AppUsersChargeResult">
|
|
@@ -48,6 +50,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="coin != null "> and coin = #{coin}</if>
|
|
|
<if test="coinType != null "> and coin_type = #{coinType}</if>
|
|
|
<if test="coinGive != null "> and coin_give = #{coinGive}</if>
|
|
|
+ <if test="platform_service_rate != null "> and platform_service = #{platformService}</if>
|
|
|
+ <if test="platform_service != null "> and platform_service_rate = #{platformServiceRate}</if>
|
|
|
<if test="isAgent != null "> and is_agent = #{isAgent}</if>
|
|
|
<if test="isDelete != null "> and is_delete = #{isDelete}</if>
|
|
|
<if test="isWater != null "> and is_water = #{isWater}</if>
|
|
@@ -86,6 +90,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="coin != null">coin,</if>
|
|
|
<if test="coinType != null">coin_type,</if>
|
|
|
<if test="coinGive != null">coin_give,</if>
|
|
|
+ <if test="platformService != null">platform_ervice,</if>
|
|
|
+ <if test="platformServiceRate != null">platform_ervice_rate,</if>
|
|
|
<if test="isAgent != null">is_agent,</if>
|
|
|
<if test="isDelete != null">is_delete,</if>
|
|
|
<if test="isWater != null">is_water,</if>
|
|
@@ -115,6 +121,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="coin != null">#{coin},</if>
|
|
|
<if test="coinType != null">#{coinType},</if>
|
|
|
<if test="coinGive != null">#{coinGive},</if>
|
|
|
+ <if test="platformService != null">#{platformService},</if>
|
|
|
+ <if test="platformServiceRate != null">#{platformServiceRate},</if>
|
|
|
<if test="isAgent != null">#{isAgent},</if>
|
|
|
<if test="isDelete != null">#{isDelete},</if>
|
|
|
<if test="isWater != null">#{isWater},</if>
|
|
@@ -147,6 +155,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="coin != null">coin = #{coin},</if>
|
|
|
<if test="coinType != null">coin_type = #{coinType},</if>
|
|
|
<if test="coinGive != null">coin_give = #{coinGive},</if>
|
|
|
+ <if test="platformService != null">platform_service = #{platformService},</if>
|
|
|
+ <if test="platformServiceRate != null">platform_service_rate = #{platformServiceRate},</if>
|
|
|
<if test="isAgent != null">is_agent = #{isAgent},</if>
|
|
|
<if test="isDelete != null">is_delete = #{isDelete},</if>
|
|
|
<if test="isWater != null">is_water = #{isWater},</if>
|