李白
2026-05-29 c865989f10e5a1ae4bb78831a879210fcdca2f83
platformx-business-finance-biz/src/main/java/com/by4cloud/platformx/business/controller/ContractOutBoundController.java
@@ -121,4 +121,16 @@
    public List<ContractOutBound> export(ContractOutBound contractOutBound,Long[] ids) {
        return contractOutBoundService.list(Wrappers.lambdaQuery(contractOutBound).in(ArrayUtil.isNotEmpty(ids), ContractOutBound::getId, ids));
    }
   /**
    * 历史出库
    * @param contractId 分页对象
    * @return
    */
   @GetMapping("/list/{contractId}" )
   public R getContractOutBoundPage(@PathVariable("contractId") Long contractId) {
      return R.ok(contractOutBoundService.list(Wrappers.<ContractOutBound>lambdaQuery().eq(ContractOutBound::getContractId,contractId)
            .orderByAsc(ContractOutBound::getCreateTime)));
   }
}