luoxinwu
2024-03-05 c88d1658a2b6b51ed1a81c3be3e9102b661970f3
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
package com.panzhihua.service_dangjian.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.service_dangjian.entity.ComActIntegralUserTrade;
 
/**
 * @auther lyq
 * @create 2021-07-28 16:03:18
 * @describe 用户积分账户交易记录服务类
 */
public interface ComActIntegralUserTradeDaoService extends IService<ComActIntegralUserTrade> {
 
 
    /**
     * 添加用户积分交易记录
     * 
     * @param userId
     *            用户id
     * @param integralId
     *            积分账户id
     * @param communityId
     *            社区id
     * @param serviceId
     *            交易业务id
     * @param serviceType
     *            交易业务类型(1.发布随手拍 2.发布微心愿 3.参与议事投票 4.社区活动-居民身份参与 " +
     *             "5.社区活动-党员身份参与 6.社区活动-志愿者身份参与 7.参与调查问卷 8.取消活动 9.参与单位党员活动)
     * @param amount
     *            交易积分数量
     * @param changeType
     *            变动类型(1.增加 2.减少)
     * @param remark
     *            交易备注
     * @param identityType
     *            交易身份类型(1.居民 2.党员 3.志愿者)
     * @param createBy
     *            操作人id
     */
    Long addIntegralTradeRecord(Long userId, Long integralId, Long communityId, Long serviceId, Integer serviceType,
        Integer amount, Integer changeType, String remark, Integer identityType, Long createBy);
 
}