ソースを参照

监管报表代码提交

ZhangYanJie 1 ヶ月 前
コミット
42cc3077f9
21 ファイル変更122 行追加96 行削除
  1. 2 1
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/AccountManageListMapper.java
  2. 3 2
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/CapitalOccupyMonitorMapper.java
  3. 2 1
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/CorporateLoansCustomersMapper.java
  4. 2 1
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/MultiDimensionalCreditRiskMapper.java
  5. 2 1
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/ProductCreditRiskListMapper.java
  6. 2 1
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/ProductTypeCreditRiskListMapper.java
  7. 6 7
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/AccountManageListMapper.xml
  8. 8 8
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/CapitalOccupyMonitorMapper.xml
  9. 6 10
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/CorporateLoansCustomersMapper.xml
  10. 33 14
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/MultiDimensionalCreditRiskMapper.xml
  11. 7 8
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/ProductCreditRiskListMapper.xml
  12. 7 8
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/ProductTypeCreditRiskListMapper.xml
  13. 1 1
      Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/service/CapitalOccupyMonitorService.java
  14. 8 0
      Procedure/frontend/projectb/config/config.ts
  15. 9 9
      Procedure/frontend/projectb/src/pages/product/internal/multidimensionalcreditrisk.tsx
  16. 4 4
      Procedure/frontend/projectb/src/services/rwa/product/internal/accountmanagercreditriskoccupy.ts
  17. 4 4
      Procedure/frontend/projectb/src/services/rwa/product/internal/corporateloanscustomerstop10.ts
  18. 4 4
      Procedure/frontend/projectb/src/services/rwa/product/internal/multidimensionalcreditrisk.ts
  19. 4 4
      Procedure/frontend/projectb/src/services/rwa/product/internal/productcreditriskcapitaloccupy.ts
  20. 4 4
      Procedure/frontend/projectb/src/services/rwa/product/internal/producttypecreditriskcapitaloccupy.ts
  21. 4 4
      Procedure/frontend/projectb/src/services/rwa/product/internal/withintablecorporateloans.ts

+ 2 - 1
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/AccountManageListMapper.java

@@ -1,9 +1,10 @@
 package com.sundata.product.rwa.internal.mapper;
 
 import com.sundata.product.rwa.internal.model.AccountManageListModel;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 public interface AccountManageListMapper {
-    List<AccountManageListModel> getDataList(AccountManageListModel model);
+    List<AccountManageListModel> getDataList(@Param("model") AccountManageListModel model);
 }

+ 3 - 2
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/CapitalOccupyMonitorMapper.java

@@ -2,11 +2,12 @@ package com.sundata.product.rwa.internal.mapper;
 
 import com.sundata.product.rwa.internal.model.CapitalOccupyMonitorModel;
 import com.sundata.product.rwa.internal.model.MultiDimensionalCreditRiskModel;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 public interface CapitalOccupyMonitorMapper {
-    List<CapitalOccupyMonitorModel> getDataList();
+    List<CapitalOccupyMonitorModel> getDataList(@Param("model") CapitalOccupyMonitorModel model);
 
-    List<MultiDimensionalCreditRiskModel> getDetailDataList(CapitalOccupyMonitorModel model);
+    List<MultiDimensionalCreditRiskModel> getDetailDataList(@Param("model")  CapitalOccupyMonitorModel model);
 }

+ 2 - 1
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/CorporateLoansCustomersMapper.java

@@ -1,9 +1,10 @@
 package com.sundata.product.rwa.internal.mapper;
 
 import com.sundata.product.rwa.internal.model.CorporateLoansCustomersModel;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 public interface CorporateLoansCustomersMapper {
-    List<CorporateLoansCustomersModel> getDataList(CorporateLoansCustomersModel model);
+    List<CorporateLoansCustomersModel> getDataList(@Param("model") CorporateLoansCustomersModel model);
 }

+ 2 - 1
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/MultiDimensionalCreditRiskMapper.java

@@ -1,9 +1,10 @@
 package com.sundata.product.rwa.internal.mapper;
 
 import com.sundata.product.rwa.internal.model.MultiDimensionalCreditRiskModel;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 public interface MultiDimensionalCreditRiskMapper {
-    List<MultiDimensionalCreditRiskModel> getDataList(MultiDimensionalCreditRiskModel model);
+    List<MultiDimensionalCreditRiskModel> getDataList(@Param("model") MultiDimensionalCreditRiskModel model);
 }

+ 2 - 1
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/ProductCreditRiskListMapper.java

@@ -1,9 +1,10 @@
 package com.sundata.product.rwa.internal.mapper;
 
 import com.sundata.product.rwa.internal.model.ProductCreditRiskListModel;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 public interface ProductCreditRiskListMapper {
-    List<ProductCreditRiskListModel> getDataList(ProductCreditRiskListModel model);
+    List<ProductCreditRiskListModel> getDataList(@Param("model") ProductCreditRiskListModel model);
 }

+ 2 - 1
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mapper/ProductTypeCreditRiskListMapper.java

@@ -1,9 +1,10 @@
 package com.sundata.product.rwa.internal.mapper;
 
 import com.sundata.product.rwa.internal.model.ProductTypeCreditRiskListModel;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 public interface ProductTypeCreditRiskListMapper {
-    List<ProductTypeCreditRiskListModel> getDataList(ProductTypeCreditRiskListModel model);
+    List<ProductTypeCreditRiskListModel> getDataList(@Param("model") ProductTypeCreditRiskListModel model);
 }

+ 6 - 7
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/AccountManageListMapper.xml

@@ -24,17 +24,16 @@
         AVERAGE_RISK_WEIGHT                   averageRiskWeight
         from RWA_REPORT_RS_MANAGERCREDICTGROUPG
         <where>
-            <if test="model.ruleNo != null and '' != model.ruleNo">
-                 RULE_NO like concat(concat('%',#{model.ruleNo}),'%')
+            <if test="model.loanReferenceNo != null and '' != model.loanReferenceNo">
+                LOAN_REFERENCE_NO like concat(concat('%',#{model.loanReferenceNo}),'%')
             </if>
-            <if test="model.ruleName != null and '' != model.ruleName">
-                and RULE_NAME like concat(concat('%',#{model.ruleName}),'%')
+            <if test="model.sDate != null and '' != model.sDate">
+                and SDATE like concat(concat('%',#{model.sDate}),'%')
             </if>
-            <if test="model.subjectCodes != null and '' != model.subjectCodes">
-                and SUBJECT_CODES like concat(concat('%',#{model.subjectCodes}),'%')
+            <if test="model.eDate != null and '' != model.eDate">
+                and EDATE like concat(concat('%',#{model.eDate}),'%')
             </if>
         </where>
-        order by RULE_NO,SUBJECT_CODES,LEDGER_RISKEXPOSURE_NO,LEDGER_OFFOBJECT_NO
     </select>
 
 

+ 8 - 8
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/CapitalOccupyMonitorMapper.xml

@@ -4,7 +4,7 @@
         "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.sundata.product.rwa.internal.mapper.CapitalOccupyMonitorMapper">
     <!-- 初始化与按查询条件查询 -->
-    <select id="getDataList" resultType="com.sundata.product.rwa.internal.model.AccountManageListModel" parameterType="com.sundata.product.rwa.internal.model.AccountManageListModel">
+    <select id="getDataList" resultType="com.sundata.product.rwa.internal.model.CapitalOccupyMonitorModel" parameterType="com.sundata.product.rwa.internal.model.CapitalOccupyMonitorModel">
         select
         CALCINDEX                                                AS  calcIndex,
         SDATE                                                    AS  sDate,
@@ -34,17 +34,17 @@
         AVERAGE_RISK_WEIGHT                                      AS  averageRiskWeight
         from RWA_REPORT_RS_ORGCREDICTGROUP
         <where>
-            <if test="model.ruleNo != null and '' != model.ruleNo">
-                and RULE_NO like concat(concat('%',#{model.ruleNo}),'%')
+            <if test="model.orgCode != null and '' != model.orgCode">
+                and ORGCODE like concat(concat('%',#{model.orgCode}),'%')
             </if>
-            <if test="model.ruleName != null and '' != model.ruleName">
-                and RULE_NAME like concat(concat('%',#{model.ruleName}),'%')
+            <if test="model.sDate != null and '' != model.sDate">
+                and SDATE like concat(concat('%',#{model.sDate}),'%')
             </if>
-            <if test="model.subjectCodes != null and '' != model.subjectCodes">
-                and SUBJECT_CODES like concat(concat('%',#{model.subjectCodes}),'%')
+            <if test="model.eDate != null and '' != model.eDate">
+                and EDATE like concat(concat('%',#{model.eDate}),'%')
             </if>
         </where>
-        order by RULE_NO,SUBJECT_CODES,LEDGER_RISKEXPOSURE_NO,LEDGER_OFFOBJECT_NO
+        order by ORGCODE
     </select>
 
     <!-- 初始化与按查询条件查询 -->

+ 6 - 10
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/CorporateLoansCustomersMapper.xml

@@ -26,19 +26,15 @@
         RWA                              AS   rwa,
         RWA_WEIGHT                       AS   rwaWeight,
         AVERAGE_RISK_WEIGHT              AS   averageRiskWeight
-        from RWA_REPORT_RS_MANAGERCREDICTGROUPG
+        from RWA_REPORT_RS_ENTCUSTTOP10
         <where>
-            <if test="model.ruleNo != null and '' != model.ruleNo">
-                 RULE_NO like concat(concat('%',#{model.ruleNo}),'%')
-            </if>
-            <if test="model.ruleName != null and '' != model.ruleName">
-                and RULE_NAME like concat(concat('%',#{model.ruleName}),'%')
-            </if>
-            <if test="model.subjectCodes != null and '' != model.subjectCodes">
-                and SUBJECT_CODES like concat(concat('%',#{model.subjectCodes}),'%')
+<!--            <if test="model.orgCode != null and '' != model.orgCode">-->
+<!--                and ORGCODE like concat(concat('%',#{model.orgCode}),'%')-->
+<!--            </if>-->
+            <if test="model.term != null and '' != model.term">
+                and TERM like concat(concat('%',#{model.term}),'%')
             </if>
         </where>
-        order by RULE_NO,SUBJECT_CODES,LEDGER_RISKEXPOSURE_NO,LEDGER_OFFOBJECT_NO
     </select>
 
 

+ 33 - 14
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/MultiDimensionalCreditRiskMapper.xml

@@ -8,6 +8,7 @@
             resultType="com.sundata.product.rwa.internal.model.MultiDimensionalCreditRiskModel"
             parameterType="com.sundata.product.rwa.internal.model.MultiDimensionalCreditRiskModel">
     select
+    TERM                              AS   reportDate,
     LOAN_REFERENCE_NO                 AS   loanReferenceNo,
     CONT_NO                           AS   contNo,
     MGMT_BRANCH_NO                    AS   mgmtBranchNo,
@@ -15,17 +16,17 @@
     CUST_NAME                         AS   custName,
     BUS_TYPE                          AS   busType,
     case
-    when CUST_NO in (select CUST_NO from ) RWA_TDM_BUS_PROCESS_SMALLANDMICRO
+    when CUST_NO in (select CUST_NO from RWA_TDM_BUS_PROCESS_SMALLANDMICRO)
     then '是'
     else '否'
     end                               AS   micro,
     case
-    when CUST_NO in (select CUST_NO from ) RWA_TDM_BUS_PROCESS_SMALLANDMEDIUM
+    when CUST_NO in (select CUST_NO from RWA_TDM_BUS_PROCESS_SMALLANDMEDIUM )
     then '是'
     else '否'
     end                               AS   medium,
     case
-    when CUST_NO in (select CUST_NO from ) RWA_TDM_BUS_PROCESS_REGULATEDRETAIL
+    when CUST_NO in (select CUST_NO from RWA_TDM_BUS_PROCESS_REGULATEDRETAIL )
     then '是'
     else '否'
     end                               AS   regulatoryRetail,
@@ -99,7 +100,7 @@
     where QUALFIED_CREDIT_TOOL_TYPE = 'S001')  t2    -- 现金类资产
     on t.LOAN_REFERENCE_NO = t2.LOAN_REFERENCE_NO
 
-    left jin
+    left join
     (select
     LOAN_REFERENCE_NO,
     CONT_NO,
@@ -161,22 +162,40 @@
 
     left join
     (select
-    LOAN_REFERENCE_NO               -- 债项编号
-    RISK_EXPOSURE_CODE              -- 系统认定风险暴露分类代码
-    LOAN_WEIGHT                     -- 系统认定风险权重
-    RISK_EXPOSURE_CODE_ARTIFICIAL   -- 人工认定风险暴露分类代码
+    LOAN_REFERENCE_NO,               -- 债项编号
+    RISK_EXPOSURE_CODE,              -- 系统认定风险暴露分类代码
+    LOAN_WEIGHT,                     -- 系统认定风险权重
+    RISK_EXPOSURE_CODE_ARTIFICIAL,   -- 人工认定风险暴露分类代码
     LOAN_WEIGHT_ARTIFICIAL          -- 人工认定风险权重
     from RWA_APM_BUS_RS_ARTIFICIALRESULT ) t8 -- 风险暴露分类人工认定历史表
     on t.LOAN_REFERENCE_NO = t8.LOAN_REFERENCE_NO
         <where>
-            <if test="model.ruleNo != null and '' != model.ruleNo">
-                 RULE_NO like concat(concat('%',#{model.ruleNo}),'%')
+            <if test="model.reportDate != null and '' != model.reportDate">
+                 TERMM like concat(concat('%',#{model.reportDate}),'%')
+            </if>
+            <if test="model.mgmtBranchNo != null and '' != model.mgmtBranchNo">
+                and MGMT_BRANCH_NO like concat(concat('%',#{model.mgmtBranchNo}),'%')
+            </if>
+            <if test="model.busLine != null and '' != model.busLine">
+                and BUS_LINE like concat(concat('%',#{model.busLine}),'%')
+            </if>
+            <if test="model.busType != null and '' != model.busType">
+                BUS_TYPE like concat(concat('%',#{model.busType}),'%')
+            </if>
+            <if test="model.onOffFlag != null and '' != model.onOffFlag">
+                and ON_OFF_FLAG like concat(concat('%',#{model.onOffFlag}),'%')
+            </if>
+            <if test="model.productType != null and '' != model.productType">
+                and t1.PRODUCT_TYPE like concat(concat('%',#{model.productType}),'%')
+            </if>
+            <if test="model.productName != null and '' != model.productName">
+                PRODUCT_NAME like concat(concat('%',#{model.productName}),'%')
             </if>
-            <if test="model.ruleName != null and '' != model.ruleName">
-                and RULE_NAME like concat(concat('%',#{model.ruleName}),'%')
+            <if test="model.custNo != null and '' != model.custNo">
+                and CUST_NO like concat(concat('%',#{model.custNo}),'%')
             </if>
-            <if test="model.subjectCodes != null and '' != model.subjectCodes">
-                and SUBJECT_CODES like concat(concat('%',#{model.subjectCodes}),'%')
+            <if test="model.loanReferenceNo != null and '' != model.loanReferenceNo">
+                and LOAN_REFERENCE_NO like concat(concat('%',#{model.loanReferenceNo}),'%')
             </if>
         </where>
     </select>

+ 7 - 8
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/ProductCreditRiskListMapper.xml

@@ -25,17 +25,16 @@
         AVERAGE_RISK_WEIGHT               AS    averageRiskWeight
         from RWA_REPORT_RS_PRODUCTCREDICTRISKGROUP
         <where>
-            <if test="model.ruleNo != null and '' != model.ruleNo">
-                 RULE_NO like concat(concat('%',#{model.ruleNo}),'%')
+<!--            <if test="model.orgCode != null and '' != model.orgCode">-->
+<!--                and ORGCODE like concat(concat('%',#{model.orgCode}),'%')-->
+<!--            </if>-->
+            <if test="model.sDate != null and '' != model.sDate">
+                and SDATE like concat(concat('%',#{model.sDate}),'%')
             </if>
-            <if test="model.ruleName != null and '' != model.ruleName">
-                and RULE_NAME like concat(concat('%',#{model.ruleName}),'%')
-            </if>
-            <if test="model.subjectCodes != null and '' != model.subjectCodes">
-                and SUBJECT_CODES like concat(concat('%',#{model.subjectCodes}),'%')
+            <if test="model.eDate != null and '' != model.eDate">
+                and EDATE like concat(concat('%',#{model.eDate}),'%')
             </if>
         </where>
-        order by RULE_NO,SUBJECT_CODES,LEDGER_RISKEXPOSURE_NO,LEDGER_OFFOBJECT_NO
     </select>
 
 

+ 7 - 8
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/mybatis/ProductTypeCreditRiskListMapper.xml

@@ -25,17 +25,16 @@
         AVERAGE_RISK_WEIGHT                AS   averageRiskWeight
         from RWA_REPORT_RS_PRODUCTTYPECREDICTGROUP
         <where>
-            <if test="model.ruleNo != null and '' != model.ruleNo">
-                 RULE_NO like concat(concat('%',#{model.ruleNo}),'%')
+            <!--            <if test="model.orgCode != null and '' != model.orgCode">-->
+            <!--                and ORGCODE like concat(concat('%',#{model.orgCode}),'%')-->
+            <!--            </if>-->
+            <if test="model.sDate != null and '' != model.sDate">
+                and SDATE like concat(concat('%',#{model.sDate}),'%')
             </if>
-            <if test="model.ruleName != null and '' != model.ruleName">
-                and RULE_NAME like concat(concat('%',#{model.ruleName}),'%')
-            </if>
-            <if test="model.subjectCodes != null and '' != model.subjectCodes">
-                and SUBJECT_CODES like concat(concat('%',#{model.subjectCodes}),'%')
+            <if test="model.eDate != null and '' != model.eDate">
+                and EDATE like concat(concat('%',#{model.eDate}),'%')
             </if>
         </where>
-        order by RULE_NO,SUBJECT_CODES,LEDGER_RISKEXPOSURE_NO,LEDGER_OFFOBJECT_NO
     </select>
 
 

+ 1 - 1
Procedure/backend/project/src/main/java/com/sundata/product/rwa/internal/service/CapitalOccupyMonitorService.java

@@ -24,7 +24,7 @@ public class CapitalOccupyMonitorService {
      * @throws:
      */
     public List<CapitalOccupyMonitorModel> getDataList(CapitalOccupyMonitorModel model) {
-        return capitalOccupyMonitorMapper.getDataList();
+        return capitalOccupyMonitorMapper.getDataList(model);
     }
 
     /**

+ 8 - 0
Procedure/frontend/projectb/config/config.ts

@@ -178,6 +178,14 @@ export default defineConfig({
     { path: '/supplementtemplatedefine' , component: './product/datasupplementary/supplementtemplatedefine'},
     { path: '/supplementtaskmanagement' , component: './product/datasupplementary/supplementtaskmanagement'},
     { path: '/datasupplementation' , component: './product/datasupplementary/datasupplementation'},
+    // 内管报表
+    { path: '/accountmanagercreditriskoccupy' , component: './product/internal/accountmanagercreditriskoccupy'},
+    { path: '/capitaloccupymonitor' , component: './product/internal/capitaloccupymonitor'},
+    { path: '/corporateloanscustomerstop10' , component: './product/internal/corporateloanscustomerstop10'},
+    { path: '/multidimensionalcreditrisk' , component: './product/internal/multidimensionalcreditrisk'},
+    { path: '/productcreditriskcapitaloccupy' , component: './product/internal/productcreditriskcapitaloccupy'},
+    { path: '/producttypecreditriskcapitaloccupy' , component: './product/internal/producttypecreditriskcapitaloccupy'},
+    { path: '/withintablecorporateloans' , component: './product/internal/withintablecorporateloans'},
 
   ],
 

+ 9 - 9
Procedure/frontend/projectb/src/pages/product/internal/multidimensionalcreditrisk.tsx

@@ -53,14 +53,14 @@ const multidimensionalcreditrisk : React.FC<widowRush> = (prop:widowRush) => {
         {
             title: '报表日期                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ',
             dataIndex: 'reportDate',
-            search: false,
+            order:-1
         },
 
 
         {
             title: '债项编号',
             dataIndex: 'loanReferenceNo',
-            search: false,
+            order:-9
         },
         {
             title: '合同编号',
@@ -70,12 +70,12 @@ const multidimensionalcreditrisk : React.FC<widowRush> = (prop:widowRush) => {
         {
             title: '经营机构',
             dataIndex: 'mgmtBranchNo',
-            search: false,
+            orrder:-2
         },
         {
             title: '客户编号',
             dataIndex: 'custNo',
-            search: false,
+            order:-8
         },
         {
             title: '客户名称',
@@ -85,7 +85,7 @@ const multidimensionalcreditrisk : React.FC<widowRush> = (prop:widowRush) => {
         {
             title: '交易对手大类',
             dataIndex: 'busType',
-            search: false,
+            orrder:-4,
             valueType: 'treeSelect',
             request: () => fetchDict('CUST_TYPE_LV02'),
             fieldProps: {
@@ -110,7 +110,7 @@ const multidimensionalcreditrisk : React.FC<widowRush> = (prop:widowRush) => {
         {
             title: '产品大类',
             dataIndex: 'productType',
-            search: false,
+            order:-6,
             valueType: 'treeSelect',
             request: () => fetchDict('PRODUCT_TYPE'),
             fieldProps: {
@@ -120,12 +120,12 @@ const multidimensionalcreditrisk : React.FC<widowRush> = (prop:widowRush) => {
         {
             title: '产品名称',
             dataIndex: 'productName',
-            search: false,
+            order:-7
         },
         {
             title: '表内外标识',
             dataIndex: 'onOffFlag',
-            search: false,
+            order:-5
         },
         {
             title: '贴现类型',
@@ -290,7 +290,7 @@ const multidimensionalcreditrisk : React.FC<widowRush> = (prop:widowRush) => {
         {
             title: '所属条线',
             dataIndex: 'busLine',
-            search: false,
+            orrder:-3
         },
         {
             title: '承诺类型',

+ 4 - 4
Procedure/frontend/projectb/src/services/rwa/product/internal/accountmanagercreditriskoccupy.ts

@@ -167,25 +167,25 @@ export type detailInfoListModel = {
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDataList(body:AccountManageListModel) {
-    return baseFun.request<AccountManageListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDataList.do',{data: body});
+    return baseFun.request<AccountManageListModel[]>('/api/product/rwa/internal/AccountManageListAction/getDataList.do',{data: body});
 }
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDetailDataList(body:AccountManageListModel) {
-  return baseFun.request<AccountManageListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDetailDataList.do',{data: body});
+  return baseFun.request<AccountManageListModel[]>('/api/product/rwa/internal/AccountManageListAction/getDetailDataList.do',{data: body});
 }
 
 
 /** 全部导出 */
 export async function exportExcelModel(body:any,fileNameCode:string) {
-  const url = "/api/product/rwa/dataquality/DataQualityResultAction/exportExcelModel.do?fileNameCode="+fileNameCode;
+  const url = "/api/product/rwa/internal/AccountManageListAction/exportExcelModel.do?fileNameCode="+fileNameCode;
   return baseFun.download(url,body);
 }
 
 
 /** 唯一性校验 POST */
 export async function isNotExist(body: AccountManageListModel) {
-    return baseFun.request<any>('/api/product/rwa/dataquality/DataQualityResultAction/isNotExist.do', {
+    return baseFun.request<any>('/api/product/rwa/internal/AccountManageListAction/isNotExist.do', {
       data: body,
     });
 }

+ 4 - 4
Procedure/frontend/projectb/src/services/rwa/product/internal/corporateloanscustomerstop10.ts

@@ -175,25 +175,25 @@ export type detailInfoListModel = {
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDataList(body:CorporateLoansCustomersModel) {
-    return baseFun.request<CorporateLoansCustomersModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDataList.do',{data: body});
+    return baseFun.request<CorporateLoansCustomersModel[]>('/api/product/rwa/internal/CorporateLoansCustomersAction/getDataList.do',{data: body});
 }
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDetailDataList(body:CorporateLoansCustomersModel) {
-  return baseFun.request<CorporateLoansCustomersModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDetailDataList.do',{data: body});
+  return baseFun.request<CorporateLoansCustomersModel[]>('/api/product/rwa/internal/CorporateLoansCustomersAction/getDetailDataList.do',{data: body});
 }
 
 
 /** 全部导出 */
 export async function exportExcelModel(body:any,fileNameCode:string) {
-  const url = "/api/product/rwa/dataquality/DataQualityResultAction/exportExcelModel.do?fileNameCode="+fileNameCode;
+  const url = "/api/product/rwa/internal/CorporateLoansCustomersAction/exportExcelModel.do?fileNameCode="+fileNameCode;
   return baseFun.download(url,body);
 }
 
 
 /** 唯一性校验 POST */
 export async function isNotExist(body: CorporateLoansCustomersModel) {
-    return baseFun.request<any>('/api/product/rwa/dataquality/DataQualityResultAction/isNotExist.do', {
+    return baseFun.request<any>('/api/product/rwa/internal/CorporateLoansCustomersAction/isNotExist.do', {
       data: body,
     });
 }

+ 4 - 4
Procedure/frontend/projectb/src/services/rwa/product/internal/multidimensionalcreditrisk.ts

@@ -143,25 +143,25 @@ export type MultiDimensionalCreditRiskModel = {
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDataList(body:MultiDimensionalCreditRiskModel) {
-    return baseFun.request<MultiDimensionalCreditRiskModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDataList.do',{data: body});
+    return baseFun.request<MultiDimensionalCreditRiskModel[]>('/api/product/rwa/internal/MultiDimensionalCreditRiskAction/getDataList.do',{data: body});
 }
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDetailDataList(body:MultiDimensionalCreditRiskModel) {
-  return baseFun.request<MultiDimensionalCreditRiskModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDetailDataList.do',{data: body});
+  return baseFun.request<MultiDimensionalCreditRiskModel[]>('/api/product/rwa/internal/MultiDimensionalCreditRiskAction/getDetailDataList.do',{data: body});
 }
 
 
 /** 全部导出 */
 export async function exportExcelModel(body:any,fileNameCode:string) {
-  const url = "/api/product/rwa/dataquality/DataQualityResultAction/exportExcelModel.do?fileNameCode="+fileNameCode;
+  const url = "/api/product/rwa/internal/MultiDimensionalCreditRiskAction/exportExcelModel.do?fileNameCode="+fileNameCode;
   return baseFun.download(url,body);
 }
 
 
 /** 唯一性校验 POST */
 export async function isNotExist(body: MultiDimensionalCreditRiskModel) {
-    return baseFun.request<any>('/api/product/rwa/dataquality/DataQualityResultAction/isNotExist.do', {
+    return baseFun.request<any>('/api/product/rwa/internal/MultiDimensionalCreditRiskAction/isNotExist.do', {
       data: body,
     });
 }

+ 4 - 4
Procedure/frontend/projectb/src/services/rwa/product/internal/productcreditriskcapitaloccupy.ts

@@ -169,25 +169,25 @@ export type detailInfoListModel = {
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDataList(body:ProductCreditRiskListModel) {
-    return baseFun.request<ProductCreditRiskListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDataList.do',{data: body});
+    return baseFun.request<ProductCreditRiskListModel[]>('/api/product/rwa/internal/ProductCreditRiskListAction/getDataList.do',{data: body});
 }
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDetailDataList(body:ProductCreditRiskListModel) {
-  return baseFun.request<ProductCreditRiskListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDetailDataList.do',{data: body});
+  return baseFun.request<ProductCreditRiskListModel[]>('/api/product/rwa/internal/ProductCreditRiskListAction/getDetailDataList.do',{data: body});
 }
 
 
 /** 全部导出 */
 export async function exportExcelModel(body:any,fileNameCode:string) {
-  const url = "/api/product/rwa/dataquality/DataQualityResultAction/exportExcelModel.do?fileNameCode="+fileNameCode;
+  const url = "/api/product/rwa/internal/ProductCreditRiskListAction/exportExcelModel.do?fileNameCode="+fileNameCode;
   return baseFun.download(url,body);
 }
 
 
 /** 唯一性校验 POST */
 export async function isNotExist(body: ProductCreditRiskListModel) {
-    return baseFun.request<any>('/api/product/rwa/dataquality/DataQualityResultAction/isNotExist.do', {
+    return baseFun.request<any>('/api/product/rwa/internal/ProductCreditRiskListAction/isNotExist.do', {
       data: body,
     });
 }

+ 4 - 4
Procedure/frontend/projectb/src/services/rwa/product/internal/producttypecreditriskcapitaloccupy.ts

@@ -169,25 +169,25 @@ export type detailInfoListModel = {
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDataList(body:ProductTypeCreditRiskListModel) {
-    return baseFun.request<ProductTypeCreditRiskListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDataList.do',{data: body});
+    return baseFun.request<ProductTypeCreditRiskListModel[]>('/api/product/rwa/internal/ProductTypeCreditRiskListAction/getDataList.do',{data: body});
 }
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDetailDataList(body:ProductTypeCreditRiskListModel) {
-  return baseFun.request<ProductTypeCreditRiskListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDetailDataList.do',{data: body});
+  return baseFun.request<ProductTypeCreditRiskListModel[]>('/api/product/rwa/internal/ProductTypeCreditRiskListAction/getDetailDataList.do',{data: body});
 }
 
 
 /** 全部导出 */
 export async function exportExcelModel(body:any,fileNameCode:string) {
-  const url = "/api/product/rwa/dataquality/DataQualityResultAction/exportExcelModel.do?fileNameCode="+fileNameCode;
+  const url = "/api/product/rwa/internal/ProductTypeCreditRiskListAction/exportExcelModel.do?fileNameCode="+fileNameCode;
   return baseFun.download(url,body);
 }
 
 
 /** 唯一性校验 POST */
 export async function isNotExist(body: ProductTypeCreditRiskListModel) {
-    return baseFun.request<any>('/api/product/rwa/dataquality/DataQualityResultAction/isNotExist.do', {
+    return baseFun.request<any>('/api/product/rwa/internal/ProductTypeCreditRiskListAction/isNotExist.do', {
       data: body,
     });
 }

+ 4 - 4
Procedure/frontend/projectb/src/services/rwa/product/internal/withintablecorporateloans.ts

@@ -173,25 +173,25 @@ export type detailInfoListModel = {
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDataList(body:CorporateLoansListModel) {
-    return baseFun.request<CorporateLoansListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDataList.do',{data: body});
+    return baseFun.request<CorporateLoansListModel[]>('/api/product/rwa/internal/CapitalOccupyMonitorAction/getDataList.do',{data: body});
 }
 
 /** 获取页面初始化及条件查询 POST*/
 export async function getDetailDataList(body:CorporateLoansListModel) {
-  return baseFun.request<CorporateLoansListModel[]>('/api/product/rwa/dataquality/DataQualityResultAction/getDetailDataList.do',{data: body});
+  return baseFun.request<CorporateLoansListModel[]>('/api/product/rwa/internal/CapitalOccupyMonitorAction/getDetailDataList.do',{data: body});
 }
 
 
 /** 全部导出 */
 export async function exportExcelModel(body:any,fileNameCode:string) {
-  const url = "/api/product/rwa/dataquality/DataQualityResultAction/exportExcelModel.do?fileNameCode="+fileNameCode;
+  const url = "/api/product/rwa/internal/CapitalOccupyMonitorAction/exportExcelModel.do?fileNameCode="+fileNameCode;
   return baseFun.download(url,body);
 }
 
 
 /** 唯一性校验 POST */
 export async function isNotExist(body: CorporateLoansListModel) {
-    return baseFun.request<any>('/api/product/rwa/dataquality/DataQualityResultAction/isNotExist.do', {
+    return baseFun.request<any>('/api/product/rwa/internal/CapitalOccupyMonitorAction/isNotExist.do', {
       data: body,
     });
 }