zxl
2 天以前 f3450326233f27338b3658f4b6664f3a279c6f8a
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
package cn.lili.controller.activity;
 
 
import cn.lili.base.Result;
import cn.lili.modules.lmk.domain.query.ScanPrizeQuery;
import cn.lili.modules.lmk.service.ScanPrizeService;
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.RestController;
 
/**
 * lmk-shop-java
 *
 * @author : zxl
 * @date : 2025-09-30 17:03
 **/
@RequiredArgsConstructor
@RestController
@RequestMapping("/store/lmk/scan-prize")
public class StorePrizeClaimController {
    private final ScanPrizeService scanPrizeService;
 
    @GetMapping("/page")
    @ApiOperation(value = "分页", notes = "分页")
    public Result page(ScanPrizeQuery query) {
        return scanPrizeService.page(query,"seller");
    }
}