| | |
| | | public class THtmlController { |
| | | @Resource |
| | | private THtmlService htmlService; |
| | | |
| | | |
| | | |
| | | @ApiOperation(tags = {"后台-内容设置-协议服务"},value = "新增修改") |
| | | @PostMapping(value = "/saveOrUpdate") |
| | | public AjaxResult saveOrUpdate(@RequestBody THtml tHtml) { |
| | |
| | | } |
| | | |
| | | @ApiOperation(tags = {"后台-内容设置-协议服务"},value = "查询") |
| | | @PostMapping(value = "/selectByType/{type}") |
| | | @GetMapping(value = "/selectByType/{type}") |
| | | public AjaxResult selectByType(@PathVariable Integer type) { |
| | | THtml one = htmlService.lambdaQuery().eq(THtml::getType, type).last("limit 1").one(); |
| | | return AjaxResult.success(one); |