cloudroam
2024-08-29 68b182ab510ef8d323ab8cb5f5ebc8bd108d19ca
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 {
}