接口 CustomerProductRpcService
@FeignClient(name="yst-dms2-ss",
path="/rpc/template/template/customer-product/open-api")
@Validated
public interface CustomerProductRpcService
客户商品RPC服务接口
-
字段概要
字段 -
方法概要
修饰符和类型方法说明com.elitesland.ystdms.sys.dto.ApiResult<com.elitesland.ystdms.sys.dto.PagingVO<CustomerProductRespVO>> paging(CustomerProductPageParam pageParam) 分页查询客户商品列表com.elitesland.ystdms.sys.dto.ApiResult<List<CustomerProductRespVO>> queryList(CustomerProductPageParam pageParam) 查询客户商品列表(不分页)
-
字段详细资料
-
URI
- 另请参阅:
-
-
方法详细资料
-
paging
@PostMapping("/queryPage") com.elitesland.ystdms.sys.dto.ApiResult<com.elitesland.ystdms.sys.dto.PagingVO<CustomerProductRespVO>> paging(@RequestBody CustomerProductPageParam pageParam) 分页查询客户商品列表- 参数:
pageParam- 查询参数- 返回:
- 客户商品分页列表
-
queryList
@PostMapping("/queryList") com.elitesland.ystdms.sys.dto.ApiResult<List<CustomerProductRespVO>> queryList(@RequestBody CustomerProductPageParam pageParam) 查询客户商品列表(不分页)- 参数:
pageParam- 查询参数- 返回:
- 客户商品列表
-