接口 FinishedProductRpcService
@FeignClient(name="yst-dms2-ss",
path="/rpc/template/template/product/open-api")
@Validated
public interface FinishedProductRpcService
产成品档案RPC服务接口
-
字段概要
字段 -
方法概要
修饰符和类型方法说明com.elitesland.ystdms.sys.dto.ApiResult<List<FinishedProductDetailRespDTO>> listByProductCodes(List<String> productCodes) 根据商品编码列表查询产成品详情列表(不分页)com.elitesland.ystdms.sys.dto.ApiResult<com.elitesland.ystdms.sys.dto.PagingVO<FinishedProductRespDTO>> queryPage(FinishedProductPageDTO param) 分页查询产成品档案列表
-
字段详细资料
-
URI
- 另请参阅:
-
-
方法详细资料
-
queryPage
@PostMapping("/queryPage") com.elitesland.ystdms.sys.dto.ApiResult<com.elitesland.ystdms.sys.dto.PagingVO<FinishedProductRespDTO>> queryPage(@RequestBody FinishedProductPageDTO param) 分页查询产成品档案列表- 参数:
param- 查询参数- 返回:
- 产成品档案分页列表
-
listByProductCodes
@PostMapping("/listByProductCodes") com.elitesland.ystdms.sys.dto.ApiResult<List<FinishedProductDetailRespDTO>> listByProductCodes(@RequestBody List<String> productCodes) 根据商品编码列表查询产成品详情列表(不分页)- 参数:
productCodes- 商品编码列表- 返回:
- 产成品详情列表
-