|
@@ -10,6 +10,7 @@ import org.jeecg.modules.app.dto.SealInfoDTO;
|
|
|
import org.jeecg.modules.app.esign.exception.EsignDemoException;
|
|
|
import org.jeecg.modules.app.service.IESignService;
|
|
|
import org.jeecg.modules.system.app.dto.AppContractInfoDTO;
|
|
|
+import org.jeecg.modules.system.app.dto.ContractSignDTO;
|
|
|
import org.jeecg.modules.system.app.entity.AppContractInfo;
|
|
|
import org.jeecg.modules.system.app.vo.ContractSignVO;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -165,11 +166,9 @@ public class ESignController {
|
|
|
* @Param
|
|
|
* @return
|
|
|
**/
|
|
|
- @GetMapping("/queryUserSignContractList")
|
|
|
+ @PostMapping("/queryUserSignContractList")
|
|
|
@Operation(summary = "获取用户签署合同列表")
|
|
|
- public Result<IPage<ContractSignVO>> queryUserSignContractList(@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
- @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
- @RequestParam(name = "contractName")String contractName){
|
|
|
- return Result.OK(iESignService.queryUserSignContractList(contractName, pageNo, pageSize));
|
|
|
+ public Result<IPage<ContractSignVO>> queryUserSignContractList(@RequestBody ContractSignDTO contractSignDTO){
|
|
|
+ return Result.OK(iESignService.queryUserSignContractList(contractSignDTO));
|
|
|
}
|
|
|
}
|