|
@@ -1,5 +1,6 @@
|
|
|
package com.fjhx.sale.controller.claim;
|
|
|
|
|
|
+import com.fjhx.sale.entity.claim.po.ClaimContract;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.fjhx.sale.entity.claim.vo.ClaimContractVo;
|
|
@@ -9,6 +10,8 @@ import com.ruoyi.common.core.domain.BaseSelectDto;
|
|
|
import com.fjhx.sale.service.claim.ClaimContractService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -34,6 +37,14 @@ public class ClaimContractController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 根据合同批量查询
|
|
|
+ */
|
|
|
+ @PostMapping("/getListByContractIds")
|
|
|
+ public List<ClaimContract> getListByContractIds(@RequestBody List<Long> contractIds) {
|
|
|
+ return claimContractService.getListByContractIds(contractIds);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 到账认领-合同关联表明细
|
|
|
*/
|
|
|
@PostMapping("/detail")
|