| | |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.PageDto; |
| | | import com.hz.his.dto.channel.ChannelDto; |
| | | import com.hz.his.dto.channel.ChannelGeneralDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | */ |
| | | @PostMapping(value = "/channels/list") |
| | | Result getChannelsList(@RequestBody PageDto pageDto); |
| | | |
| | | /** |
| | | * 获取渠道列表-渠道大类 |
| | | * @return Result |
| | | */ |
| | | @PostMapping(value = "/channels/type/list") |
| | | Result getChannelsListByType(@RequestBody PageDto pageDto); |
| | | |
| | | /** |
| | | * 获取渠道列表-判断是否归属 |
| | | * @return Result |
| | | */ |
| | | @PostMapping(value = "/channels/type/check") |
| | | Result checkInChannel(@RequestBody ChannelGeneralDto channelGeneralDto); |
| | | } |