| | |
| | | import cn.hutool.core.util.StrUtil; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * 会员列表-医生设置 |
| | | */ |
| | | @GetMapping("doctorStateChange/{id}") |
| | | @ControllerEndpoint(operation = " 会员列表-医生设置", exceptionMessage = "操作失败") |
| | | public FebsResponse doctorStateChange(@NotNull(message = "{required}") @PathVariable Long id) { |
| | | return mallMemberService.doctorStateChange(id); |
| | | } |
| | | |
| | | /** |
| | | * 会员列表-推销员设置 |
| | | */ |
| | | @GetMapping("upSale/{id}") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 会员列表-核销员设置 |
| | | */ |
| | | @GetMapping("checkOrder/{id}") |
| | | @ControllerEndpoint(operation = " 会员列表-核销员设置", exceptionMessage = "操作失败") |
| | | public FebsResponse checkOrder(@NotNull(message = "{required}") @PathVariable Long id) { |
| | | return mallMemberService.checkOrder(id); |
| | | } |
| | | |
| | | /** |
| | | * 会员列表-推销员设置 |
| | | */ |
| | | @GetMapping("downSale/{id}") |