Cui Zhi Feng
2024-08-29 50898a908596dac25cbe8f4d0c402d54290ed81d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mzl.flower.web.point;
 
 
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("/api/customer/point")
@Api(value = "会员积分", tags = "会员积分")
@Validated
@Slf4j
public class CustomerPointController {
}