|
|
@@ -103,6 +103,23 @@ public class SysUserLinkPtlAgreementController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @version
|
|
|
+ * @author: whp
|
|
|
+ * @Date: 2024/07/23
|
|
|
+ * @Description: 查询审核的所有协议 协议名称拼接
|
|
|
+ */
|
|
|
+ @GetMapping("findPtlAgreementListNew")
|
|
|
+ @ApiOperation("查询所有审核协议列表")
|
|
|
+ public HttpResult<Object> findPtlAgreementListNew() {
|
|
|
+ try{
|
|
|
+ List<PtlAgreement> list= sysUserLinkPtlAgreementService.findPtlAgreementListNew();
|
|
|
+ return HttpResult.ok(list);
|
|
|
+ }catch (Exception e){
|
|
|
+ return HttpResult.error("操作失败"+e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/findPtlAgreementListByUserId/{userId}")
|
|
|
@ApiOperation(value = "后线人员关联协议列表")
|
|
|
@ApiImplicitParam(name = "userId", value = "后线人员id", required = true)
|