接口 OperationChannelRpcService
@FeignClient(name="yst-dms2-ss",
path="/rpc/template/template/sales/open-api")
@Validated
public interface OperationChannelRpcService
运营渠道RPC服务接口
-
字段概要
字段 -
方法概要
修饰符和类型方法说明com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> findChannelByCode(List<String> channelCodes) 根据渠道编码查询渠道信息 根据渠道编码列表查询运营渠道信息com.elitesland.ystdms.sys.dto.ApiResult<OperationChannelRpcDTO> findChannelById(Long id) 根据ID查询渠道信息 根据渠道ID查询运营渠道信息com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> findChannelByIdList(List<Long> idList) 根据ID列表查询渠道信息 根据渠道ID列表查询运营渠道信息com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> 根据渠道名称列表查询渠道信息 根据渠道名称列表查询运营渠道信息com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> 根据渠道编码列表查询渠道信息 根据渠道编码列表查询运营渠道信息
-
字段详细资料
-
URI
- 另请参阅:
-
-
方法详细资料
-
findChannelByNameList
@PostMapping("/findChannelByNameList") com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> findChannelByNameList(@RequestBody OperationChannelRpcReqDTO reqDTO) 根据渠道名称列表查询渠道信息 根据渠道名称列表查询运营渠道信息- 参数:
reqDTO- 查询参数- 返回:
- 运营渠道信息列表
-
findChannelListByCodeList
@PostMapping("/findChannelListByCodeList") com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> findChannelListByCodeList(@RequestBody OperationChannelRpcReqDTO reqDTO) 根据渠道编码列表查询渠道信息 根据渠道编码列表查询运营渠道信息- 参数:
reqDTO- 查询参数- 返回:
- 运营渠道信息列表
-
findChannelByCode
@PostMapping("/findChannelByCode") com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> findChannelByCode(@RequestBody List<String> channelCodes) 根据渠道编码查询渠道信息 根据渠道编码列表查询运营渠道信息- 参数:
channelCodes- 渠道编码列表- 返回:
- 运营渠道信息列表
-
findChannelByIdList
@PostMapping("/findChannelByIdList") com.elitesland.ystdms.sys.dto.ApiResult<List<OperationChannelRpcDTO>> findChannelByIdList(@RequestBody List<Long> idList) 根据ID列表查询渠道信息 根据渠道ID列表查询运营渠道信息- 参数:
idList- 渠道ID列表- 返回:
- 运营渠道信息列表
-
findChannelById
@PostMapping("/findChannelById") com.elitesland.ystdms.sys.dto.ApiResult<OperationChannelRpcDTO> findChannelById(@RequestBody Long id) 根据ID查询渠道信息 根据渠道ID查询运营渠道信息- 参数:
id- 渠道ID- 返回:
- 运营渠道信息
-