| | |
| | | import cc.mrbird.febs.rabbit.producer.ChainProducer; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | /** |
| | | * 质押恢复 |
| | | */ |
| | | @PostMapping("zhiyaAddNew") |
| | | @ControllerEndpoint(operation = "质押恢复", exceptionMessage = "操作失败") |
| | | public FebsResponse zhiyaAddNew() { |
| | | return iAdminBannerService.zhiyaAddNew(); |
| | | } |
| | | |
| | | /** |
| | | * 质押恢复 |
| | | */ |
| | | @PostMapping("zhiyaAdd") |
| | | @ControllerEndpoint(operation = "质押恢复", exceptionMessage = "操作失败") |
| | | public FebsResponse zhiyaAdd(@Valid ZhiyaAddDto zhiyaAddDto) { |