| | |
| | | import com.ruoyi.management.api.query.UseGuideQuery; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | |
| | | |
| | | @PostMapping(value = "/tSysSet/getPage1") |
| | | R<List<TPage>> getPage1(); |
| | | |
| | | @PostMapping("/tUser/getVipSet1") |
| | | R<List<TVipSet>> getVipSet1(); |
| | | |
| | |
| | | @PostMapping("/tFeedback/addFeedBack") |
| | | R addFeedBack(@RequestBody TFeedback dto); |
| | | |
| | | @PostMapping("/tSysSet/agreement1/{type}") |
| | | R<String> agreement1(@PathVariable("type") Integer type); |
| | | |
| | | } |