xin
2025-09-27 0ab919187081583c07a9b7654050f6e8741628dc
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
package com.oying.modules.message.rest;
 
import com.oying.modules.message.domain.myDto.MesCustomerCommentMsgDTO;
import com.oying.modules.message.service.MesCustomerCommentMsgService;
import com.oying.utils.R;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.List;
 
/**
 * @author 李萌
 * @date 2025-07-25
 **/
@RestController
@RequiredArgsConstructor
@Api(tags = "消息中心:留言")
@RequestMapping("/api/mesCustomerCommentMsg")
public class MesCustomerCommentMsgController {
 
    private final MesCustomerCommentMsgService mesCustomerCommentMsgService;
//
//    @ApiOperation("导出数据")
//    @GetMapping(value = "/download")
//    @PreAuthorize("@el.check('mesCustomerCommentMsg:list')")
//    public void exportMesCustomerCommentMsg(HttpServletResponse response, MesCustomerCommentMsgQueryCriteria criteria) throws IOException {
//        mesCustomerCommentMsgService.download(mesCustomerCommentMsgService.queryAll(criteria), response);
//    }
//
//    @GetMapping
//    @ApiOperation("查询消息")
//    @PreAuthorize("@el.check('mesCustomerCommentMsg:list')")
//    public ResponseEntity<PageResult<MesCustomerCommentMsg>> queryMesCustomerCommentMsg(MesCustomerCommentMsgQueryCriteria criteria) {
//        Page<Object> page = new Page<>(criteria.getPage(), criteria.getSize());
//        return new ResponseEntity<>(mesCustomerCommentMsgService.queryAll(criteria, page), HttpStatus.OK);
//    }
//
//    @PostMapping
//    @Log("新增消息")
//    @ApiOperation("新增消息")
//    @PreAuthorize("@el.check('mesCustomerCommentMsg:add')")
//    public ResponseEntity<Object> createMesCustomerCommentMsg(@Validated @RequestBody MesCustomerCommentMsg resources) {
//        mesCustomerCommentMsgService.create(resources);
//        return new ResponseEntity<>(HttpStatus.CREATED);
//    }
//
//    @PutMapping
//    @Log("修改消息")
//    @ApiOperation("修改消息")
//    @PreAuthorize("@el.check('mesCustomerCommentMsg:edit')")
//    public ResponseEntity<Object> updateMesCustomerCommentMsg(@Validated @RequestBody MesCustomerCommentMsg resources) {
//        mesCustomerCommentMsgService.update(resources);
//        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
//    }
//
//    @DeleteMapping
//    @Log("删除消息")
//    @ApiOperation("删除消息")
//    @PreAuthorize("@el.check('mesCustomerCommentMsg:del')")
//    public ResponseEntity<Object> deleteMesCustomerCommentMsg(@ApiParam(value = "传ID数组[]") @RequestBody List<Long> ids) {
//        mesCustomerCommentMsgService.deleteAll(ids);
//        return new ResponseEntity<>(HttpStatus.OK);
//    }
 
    /* 5. 用店铺id 查询分页顾客留言    订单一一顾客*/
    @GetMapping("/customerComment")
    @ApiOperation("店铺号list查询顾客留言")
    public R<List<MesCustomerCommentMsgDTO>> customerComment(
            @RequestParam Long shopId) {
        try {
            List<MesCustomerCommentMsgDTO> res = mesCustomerCommentMsgService.listCustomerComment(shopId);
            return R.success(res);
        } catch (Exception e) {
            return R.fail(e.getMessage());
        }
    }
 
}