|
@ -0,0 +1,44 @@
|
|
|
package com.yihu.jw.care.endpoint.radio;
|
|
|
|
|
|
import com.yihu.jw.care.service.radio.WlyyRadioService;
|
|
|
import com.yihu.jw.restmodel.web.PageEnvelop;
|
|
|
import com.yihu.jw.restmodel.web.endpoint.EnvelopRestEndpoint;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.http.MediaType;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
/**
|
|
|
* @author xyq
|
|
|
* @create 2022-07-04 13:39
|
|
|
* @slogan 他化自在,我自逍遥
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping(value = "/raido",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@Api(value = "收音机音频接口", description = "收音机音频接口", tags = {"收音机音频接口"})
|
|
|
public class WlyyRadioEndpoint extends EnvelopRestEndpoint {
|
|
|
|
|
|
@Autowired
|
|
|
private WlyyRadioService radioService;
|
|
|
|
|
|
@ApiOperation(value = "分页获取收音机列表")
|
|
|
@GetMapping(value = "/getRadioPage")
|
|
|
public PageEnvelop getRadioPage(@ApiParam(name = "name",value = "名字搜索") @RequestParam(required = false) String name,
|
|
|
@ApiParam(name = "frequency",value = "频率搜索") @RequestParam(required = false) String frequency,
|
|
|
@ApiParam(name = "page",value = "页码") @RequestParam(required = false,defaultValue = "1")Integer page,
|
|
|
@ApiParam(name = "pageSize",value = "每页大小") @RequestParam(required = false,defaultValue = "20")Integer pageSize){
|
|
|
|
|
|
try {
|
|
|
return radioService.getRadioPage(name, frequency, page, pageSize);
|
|
|
}catch (Exception e){
|
|
|
return failedPageEnvelopException2(e);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
}
|