接口 OtherOutInBoundRpcService
@FeignClient(name="yst-dms2-sopt",
path="/rpc/otherOutInBound")
@Validated
public interface OtherOutInBoundRpcService
其他出入库RPC服务.
-
字段概要
字段 -
方法概要
修饰符和类型方法说明com.elitesland.ystdms.sys.dto.ApiResult<OtherWhEntryOrderDetailRpcDTO> 根据其他入库主表ID查询主表+子表数据com.elitesland.ystdms.sys.dto.ApiResult<OtherWhOutOrderDetailRpcDTO> 根据其他出库主表ID查询主表+子表数据com.elitesland.ystdms.sys.dto.ApiResult<SapCodeRespDTO> querySapCode(String middleInoutReason) 根据中台出入库原因查询SAP编码
-
字段详细资料
-
URI
- 另请参阅:
-
-
方法详细资料
-
querySapCode
@GetMapping("/querySapCode") com.elitesland.ystdms.sys.dto.ApiResult<SapCodeRespDTO> querySapCode(@RequestParam("middleInoutReason") String middleInoutReason) 根据中台出入库原因查询SAP编码- 参数:
middleInoutReason- 中台出入库原因- 返回:
- SAP编码和名称
-
queryOtherWhOutById
@GetMapping("/queryOtherWhOutById") com.elitesland.ystdms.sys.dto.ApiResult<OtherWhOutOrderDetailRpcDTO> queryOtherWhOutById(@RequestParam("id") UUID id) 根据其他出库主表ID查询主表+子表数据- 参数:
id- 其他出库主表ID- 返回:
- 其他出库详情(包含主表和子表数据)
-
queryOtherWhEntryById
@GetMapping("/queryOtherWhEntryById") com.elitesland.ystdms.sys.dto.ApiResult<OtherWhEntryOrderDetailRpcDTO> queryOtherWhEntryById(@RequestParam("id") UUID id) 根据其他入库主表ID查询主表+子表数据- 参数:
id- 其他入库主表ID- 返回:
- 其他入库详情(包含主表和子表数据)
-