lidongdong
2023-09-01 0c8807d7017a402a843fec0451e37335c86d816d
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package com.panzhihua.service_community.api;
 
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.VolunteerMerchantEvaluateVO;
import com.panzhihua.common.model.vos.community.VolunteerMerchantVO;
import com.panzhihua.common.utlis.StringUtils;
import com.panzhihua.service_community.service.VolunteerMerchantEvaluateService;
import com.panzhihua.service_community.service.VolunteerMerchantService;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.annotations.Param;
import org.springframework.web.bind.annotation.*;
 
import javax.annotation.Resource;
 
@Slf4j
@RestController
@RequestMapping("/VolunteerMerchant")
public class VolunteerMerchantApi
{
 
    @Resource
    private VolunteerMerchantService vtService;
 
 
 
    @GetMapping("/getById")
    public R volunteerMerchantGetById(@RequestParam("id") String id)
    {
        return vtService.getById(id);
    }
 
    /**
     * 分页查询
     * @param
     * @return
     */
    @GetMapping("/getList")
    public R volunteerMerchantGetList( int pageNum,
                                      @RequestParam("pageSize") int pageSize,
                                      @RequestParam(value = "merchantState", required = false) String merchantState,
                                      @RequestParam(value = "merchantType", required = false) String merchantType,
                                      @RequestParam(value = "name", required = false) String name,
                                      @RequestParam(value = "communityId", required = false) String communityId)
    {
        return vtService.volunteerMerchantGetList(pageNum, pageSize,merchantState,merchantType,name,communityId);
    }
 
    /**
     * 新增
     * @param
     * @return
     */
    @PostMapping("/insert")
    public R insertVolunteerMerchant(@RequestBody VolunteerMerchantVO vtvo)
    {
        return vtService.insertVolunteerMerchant(vtvo);
    }
 
 
    @PostMapping("/update")
    public R updateVolunteerMerchant(@RequestBody VolunteerMerchantVO vtvo)
    {
        return vtService.updateVolunteerMerchant(vtvo);
    }
 
 
    @DeleteMapping("/delete")
    public R deleteVolunteerMerchant(@RequestParam("id") String id)
    {
        return vtService.deleteVolunteerMerchant(id);
    }
 
 
    @GetMapping("/getUser")
    public R volunteerMerchantGetUser(@RequestParam("communityId") String communityId,
                                      @RequestParam(value = "userName", required = false) String userName,
                                      @RequestParam(value = "userPhone", required = false) String userPhone)
    {
        return vtService.getUser(communityId,userName,userPhone);
    }
 
    /**
     * 是否是商家
     * @param userId
     * @return
     */
    @GetMapping("/isMerchant")
    public R isMerchant(@RequestParam("userId") String userId)
    {
        if(StringUtils.isEmpty(userId))
        {
            return R.fail("用户id不能为空");
        }
        return vtService.isMerchant(userId);
    }
 
    /****************************************************************************************************************
     *
     *                      商家评论
     *
     ***************************************************************************************************************/
    @Resource
    private VolunteerMerchantEvaluateService vmeService;
 
 
    /**
     * 商家评论分页查询
     * @param
     * @return
     */
    @GetMapping("/evaluate/getList")
    public R volunteerMerchantGetList(@RequestParam("pageNum") int pageNum,
                                      @RequestParam("pageSize") int pageSize,
                                      @RequestParam("communityId") String communityId,
                                      @RequestParam("merchantId") String merchantId)
    {
        return vmeService.getList(pageNum,pageSize,communityId,merchantId);
    }
 
    /**
     * 商家评论获取详情
     * @param id
     * @return
     */
    @GetMapping("/evaluate/getData")
    public R volunteerMerchantGetData(@RequestParam("id") String id)
    {
        return vmeService.getData(id);
    }
 
    /**
     * 商家评论新增评价
     * @return
     */
    @PostMapping("/evaluate/insert")
    public R volunteerMerchantInsert(@RequestBody VolunteerMerchantEvaluateVO item)
    {
        return vmeService.insert(item);
    }
 
    /**
     * 商家评论更新评价
     * @return
     */
    @PostMapping("/evaluate/update")
    public R volunteerMerchantUpdate(@RequestBody VolunteerMerchantEvaluateVO item)
    {
        return vmeService.update(item);
    }
 
 
    /**
     * 商家评论删除评价
     * @param id
     * @return
     */
    @DeleteMapping("/evaluate/delete")
    public R volunteerMerchantDelete(@RequestParam("id") String id)
    {
        return vmeService.delete(id);
    }
 
 
}