-- 核心服务 CREATE TABLE `fc_file_config` ( `ID` int(11) NOT NULL COMMENT '唯一标识', `CHANNEL_NO` varchar(32) DEFAULT NULL COMMENT '资金渠道编号', `CHANNEL_NAME` varchar(255) DEFAULT NULL COMMENT '资金渠道名称', `FC_FLOW_TYPE` varchar(32) DEFAULT NULL COMMENT '资金方:流程编号', `FC_FLOW_TYPE_NAME` varchar(255) DEFAULT NULL COMMENT '资金方:流程编号描述:预审,终审,放款,贷后', `FC_FILE_CODE` varchar(32) DEFAULT NULL COMMENT '资金方:文件编号', `FC_FILE_CODE_NAME` varchar(32) DEFAULT NULL COMMENT '资金方:文件编号名称', `FC_FILE_TYPE` varchar(255) DEFAULT NULL COMMENT '资金方:文件类型:JPG,PNG等以逗号分隔', `PRD_FILE_CODE` varchar(32) DEFAULT NULL COMMENT '文件编号[主节点]', `PRD_FILE_NUM` varchar(32) DEFAULT NULL COMMENT '文件编号[子节点]', `PRD_FILE_CODE_NAME` varchar(32) DEFAULT NULL COMMENT '文件类型名称', `CREATE_TIME` varchar(32) DEFAULT NULL, `UPDATE_TIME` varchar(32) DEFAULT NULL, `del_flag` int(11) DEFAULT NULL, PRIMARY KEY (`ID`), KEY `I_CHANNEL_NO` (`CHANNEL_NO`), KEY `I_CHANNEL_NAME` (`CHANNEL_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='资金方产品文件关联信息表'; CREATE TABLE `fc_file_push` ( `ID` varchar(32) NOT NULL COMMENT '唯一标识', `CHANNEL_NO` varchar(32) DEFAULT NULL COMMENT '资金渠道编号', `CHANNEL_NAME` varchar(255) DEFAULT NULL COMMENT '资金渠道名称', `FC_FILE_PUSH_NAME` varchar(255) DEFAULT NULL COMMENT '当前推送文件名称:银行每日将T-1逾期文件推给第三方', `FILE_TYPE` varchar(32) DEFAULT NULL COMMENT '文件类型:TraAcctdetail', `FILE_NAME` varchar(255) DEFAULT NULL COMMENT '文件名称:111.txt', `FILE_PATH` varchar(255) DEFAULT NULL COMMENT '文件路径:/upload/111.txt', `FILE_STS` varchar(32) DEFAULT NULL COMMENT '文件状态:0,下载失败,1、解析失败,2、解析成功,3、拷贝成功', `FILE_STS_DESC` varchar(32) DEFAULT NULL COMMENT '文件状态解释说明或者失败原因', `ORDER_COUNT` varchar(32) DEFAULT NULL COMMENT '文件包含订单数量', `CREATE_TIME` varchar(32) DEFAULT NULL, `UPDATE_TIME` varchar(32) DEFAULT NULL, PRIMARY KEY (`ID`), KEY `I_CHANNEL_NO` (`CHANNEL_NO`), KEY `I_CHANNEL_NAME` (`CHANNEL_NAME`), KEY `I_FILE_TYPE` (`FILE_TYPE`), KEY `I_FILE_NAME` (`FILE_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='资方推送文件解析信息表'; CREATE TABLE `fc_notice_log` ( `ID` varchar(32) NOT NULL COMMENT '唯一标识', `FC_REQUEST_ID` varchar(32) DEFAULT NULL COMMENT '资金渠道申请ID', `FC_LOAN_QUEUEST_ID` varchar(32) DEFAULT NULL COMMENT '资金渠道放款申请ID', `CHANNEL_NO` varchar(32) DEFAULT NULL COMMENT '资金渠道编号', `CHANNEL_NAME` varchar(255) DEFAULT NULL COMMENT '资金渠道名称', `PROJECT_ID` varchar(32) DEFAULT NULL COMMENT '申请ID', `PROJECT_NO` varchar(32) DEFAULT NULL COMMENT '申请号', `CONTRACT_ID` varchar(32) DEFAULT NULL COMMENT '合同ID', `CONTRACT_NO` varchar(32) DEFAULT NULL COMMENT '合同号', `PRODUCT_ID` varchar(32) DEFAULT NULL COMMENT '产品ID', `PRODUCT_NAME` varchar(255) DEFAULT NULL COMMENT '产品名称', `DISTRIBUTOR_ID` varchar(32) DEFAULT NULL COMMENT '经销商ID', `DISTRIBUTOR_NAME` varchar(255) DEFAULT NULL COMMENT '经销商名称', `CUSTOMER_ID` varchar(32) DEFAULT NULL COMMENT '承租人ID', `CUSTOMER_NAME` varchar(32) DEFAULT NULL COMMENT '承租人姓名', `NOTICE_NAME` varchar(255) DEFAULT NULL COMMENT '推送接口名称', `NOTICE_CONTENT` longtext COMMENT '推送内容', `RESPONSE_CONTENT` varchar(255) DEFAULT NULL COMMENT '返回内容', `RESPONSE_STATUS` varchar(32) DEFAULT NULL COMMENT '当前推送接收状态', `RESPONSE_REMARK` varchar(255) DEFAULT NULL COMMENT '当前推送接收状态描述', `CREATE_TIME` datetime DEFAULT NULL, `UPDATE_TIME` datetime DEFAULT NULL, PRIMARY KEY (`ID`), KEY `I_FC_REQUEST_ID` (`FC_REQUEST_ID`), KEY `I_FC_LOAN_QUEUEST_ID` (`FC_LOAN_QUEUEST_ID`), KEY `I_CHANNEL_NO` (`CHANNEL_NO`), KEY `I_CHANNEL_NAME` (`CHANNEL_NAME`), KEY `I_PROJECT_ID` (`PROJECT_ID`), KEY `I_PROJECT_NO` (`PROJECT_NO`), KEY `I_CONTRACT_ID` (`CONTRACT_ID`), KEY `I_CONTRACT_NO` (`CONTRACT_NO`), KEY `I_PRODUCT_ID` (`PRODUCT_ID`), KEY `I_PRODUCT_NAME` (`PRODUCT_NAME`), KEY `I_DISTRIBUTOR_ID` (`DISTRIBUTOR_ID`), KEY `I_DISTRIBUTOR_NAME` (`DISTRIBUTOR_NAME`), KEY `I_CUSTOMER_ID` (`CUSTOMER_ID`), KEY `I_CUSTOMER_NAME` (`CUSTOMER_NAME`), KEY `I_RESPONSE_STATUS` (`RESPONSE_STATUS`), KEY `I_RESPONSE_REMARK` (`RESPONSE_REMARK`), KEY `I_NOTICE_NAME` (`NOTICE_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='资金方通知推送信息表'; CREATE TABLE `fc_request` ( `ID` varchar(32) NOT NULL COMMENT '唯一标识:资金渠道申请ID', `FC_LOAN_ID` varchar(32) DEFAULT NULL COMMENT '资金渠道放款申请ID', `CHANNEL_NO` varchar(32) DEFAULT NULL COMMENT '资金渠道编号', `CHANNEL_NAME` varchar(255) DEFAULT NULL COMMENT '资金渠道名称', `CHANNEL_PRODUCT_ID` varchar(32) DEFAULT NULL COMMENT '渠道产品', `CHANNEL_PRODUCT_DESC` varchar(32) DEFAULT NULL COMMENT '渠道产品描述', `PROJECT_ID` varchar(32) DEFAULT NULL COMMENT '申请ID', `PROJECT_NO` varchar(32) DEFAULT NULL COMMENT '申请号', `CONTRACT_ID` varchar(32) DEFAULT NULL COMMENT '合同ID', `CONTRACT_NO` varchar(32) DEFAULT NULL COMMENT '合同号', `PRODUCT_ID` varchar(32) DEFAULT NULL COMMENT '产品ID', `PRODUCT_NAME` varchar(255) DEFAULT NULL COMMENT '产品名称', `DISTRIBUTOR_ID` varchar(32) DEFAULT NULL COMMENT '经销商ID', `DISTRIBUTOR_NAME` varchar(255) DEFAULT NULL COMMENT '经销商名称', `CUSTOMER_ID` varchar(32) DEFAULT NULL COMMENT '承租人ID', `CUSTOMER_NAME` varchar(32) DEFAULT NULL COMMENT '承租人姓名', `FC_STAGE` int(4) DEFAULT '0' COMMENT '当前订单阶段:0信审中,1信审通过,2合同签署成功,3放款成功', `FC_STAGE_TIME` varchar(32) DEFAULT NULL COMMENT '阶段变更时间', `FC_STATUS` varchar(32) DEFAULT NULL COMMENT '当前状态:具体状态参照code_library中fc_request_sts', `FC_REMARK` varchar(255) DEFAULT NULL COMMENT '返回状态描述', `NOTICE_LOG_ID` varchar(32) DEFAULT NULL COMMENT '文件补传关联日志id', `SUPPLEMENT_STS` varchar(32) DEFAULT NULL COMMENT '是否需要补充资料:0-无需补充资料,1-需补充资料', `SUPPLEMENT_DESC` varchar(255) DEFAULT NULL COMMENT '通知需要补充资料描述', `SUPPLEMENT_TIME` varchar(32) DEFAULT NULL COMMENT '补传通知更新时间', `LOAN_TIME` varchar(32) DEFAULT NULL COMMENT '邮储放款成功时间', `DEL_FLAG` char(4) DEFAULT NULL COMMENT '是否有效:0-有效数据,1-无效数据', `CREATE_TIME` varchar(32) DEFAULT NULL, `UPDATE_TIME` varchar(32) DEFAULT NULL, PRIMARY KEY (`ID`), KEY `I_CHANNEL_NO` (`CHANNEL_NO`), KEY `I_CHANNEL_NAME` (`CHANNEL_NAME`), KEY `I_PROJECT_ID` (`PROJECT_ID`), KEY `I_PROJECT_NO` (`PROJECT_NO`), KEY `I_CONTRACT_ID` (`CONTRACT_ID`), KEY `I_CONTRACT_NO` (`CONTRACT_NO`), KEY `I_PRODUCT_ID` (`PRODUCT_ID`), KEY `I_PRODUCT_NAME` (`PRODUCT_NAME`), KEY `I_DISTRIBUTOR_ID` (`DISTRIBUTOR_ID`), KEY `I_DISTRIBUTOR_NAME` (`DISTRIBUTOR_NAME`), KEY `I_CUSTOMER_ID` (`CUSTOMER_ID`), KEY `I_CUSTOMER_NAME` (`CUSTOMER_NAME`), KEY `I_FC_STATUS` (`FC_STATUS`), KEY `I_FC_LOAN_QUEUEST_ID` (`FC_LOAN_ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='资金方订单信息表'; CREATE TABLE `fc_request_file` ( `ID` varchar(32) NOT NULL COMMENT '唯一标识', `FC_REQUEST_ID` varchar(32) DEFAULT NULL COMMENT '资金渠道申请ID', `FC_FLOW_TYPE` varchar(32) DEFAULT NULL COMMENT '流程类型', `FC_FLOW_TYPE_NAME` varchar(32) DEFAULT NULL COMMENT '流程类型名称', `FC_FILE_CODE` varchar(32) DEFAULT NULL COMMENT '资金方:文件编号', `FC_FILE_CODE_NAME` varchar(32) DEFAULT NULL COMMENT '资金方:文件编号名称', `FC_FILE_TYPE` varchar(255) DEFAULT NULL COMMENT '资金方:文件类型:JPG,PNG等', `FILE_NAME` varchar(255) DEFAULT NULL COMMENT '文件名称', `FILE_PATH` varchar(1000) DEFAULT NULL COMMENT '文件路径', `FC_FILE_STS` varchar(32) DEFAULT NULL COMMENT '文件状态:未提交,未通过,不清晰', `FC_FILE_STS_DESC` varchar(32) DEFAULT NULL COMMENT '文件状态描述', `FC_RES_VALUE` varchar(32) DEFAULT NULL COMMENT '补传原因:缺失、不清晰', `CREATE_TIME` varchar(32) DEFAULT NULL, `UPDATE_TIME` varchar(32) DEFAULT NULL, `DEL_FLAG` int(11) DEFAULT NULL COMMENT '有效标志', `INPUTTIME` varchar(32) DEFAULT NULL, `INPUTUSER` varchar(32) DEFAULT NULL, `FILE_TYPE` varchar(32) DEFAULT NULL COMMENT '当前文件类型,例如:image/jpeg', PRIMARY KEY (`ID`), KEY `I_FC_REQUEST_ID` (`FC_REQUEST_ID`), KEY `I_FC_FIOW_TYPE` (`FC_FLOW_TYPE`), KEY `I_FC_FIOW_TYPE_NAME` (`FC_FLOW_TYPE_NAME`), KEY `I_FC_FILE_CODE` (`FC_FILE_CODE`), KEY `I_FC_FILE_STS` (`FC_FILE_STS`), KEY `I_FC_FILE_STS_DESC` (`FC_FILE_STS_DESC`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='资金方文件请求信息表'; CREATE TABLE `fc_request_loan` ( `ID` varchar(32) NOT NULL COMMENT '唯一标识:资金渠道申请ID', `FC_REQUEST_ID` varchar(32) DEFAULT NULL COMMENT '资金渠道申请ID', `QUD_LAY` varchar(32) DEFAULT NULL COMMENT '合作渠道', `LOAN_NO` varchar(32) DEFAULT NULL COMMENT '借据号', `CUSTOMER_NAME` varchar(32) DEFAULT NULL COMMENT '客户姓名', `CONTRACT_NO` varchar(32) DEFAULT NULL COMMENT '借款合同号', `LOAN_DATE` varchar(32) DEFAULT NULL COMMENT '放款时间', `LOAN_AMT` varchar(32) DEFAULT NULL COMMENT '放款金额', `BUSINESS_RATE` varchar(32) DEFAULT NULL COMMENT '执行利率', `TRANS_AMT` varchar(32) DEFAULT NULL COMMENT '转账金额', `DEL_FLAG` char(4) DEFAULT NULL COMMENT '是否有效:0-有效数据,1-无效数据', `CREATE_TIME` varchar(32) DEFAULT NULL, `UPDATE_TIME` varchar(32) DEFAULT NULL, `voucher_status` int(11) DEFAULT '0' COMMENT '凭证状态:0,未生成;1,已生成', PRIMARY KEY (`ID`), KEY `I_FC_REQUEST_ID` (`FC_REQUEST_ID`) USING BTREE, KEY `I_CUSTOMER_NAME` (`CUSTOMER_NAME`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='资金方放款信息表'; CREATE TABLE `fc_request_sts_log` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一标识', `fc_request_id` varchar(32) DEFAULT NULL COMMENT '资金渠道申请ID', `pre_fc_sts` varchar(32) DEFAULT NULL COMMENT '当前状态:具体状态参照code_library中fc_request_sts', `pre_fc_sts_desc` varchar(255) DEFAULT NULL COMMENT '返回状态描述', `fc_sts` varchar(32) DEFAULT NULL COMMENT '当前状态:具体状态参照code_library中fc_request_sts', `fc_sts_desc` varchar(255) DEFAULT NULL COMMENT '返回状态描述', `remark` varchar(255) DEFAULT NULL COMMENT '状态修改操作描述', `createtime` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`), KEY `i_fc_request_id` (`fc_request_id`), KEY `i_fc_sts` (`fc_sts`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=gbk COMMENT='资金方订单状态信息记录表'; CREATE TABLE `fc_yc_file_repay_plan` ( `ID` varchar(32) NOT NULL COMMENT '唯一标识', `FC_FILE_ID` varchar(32) NOT NULL COMMENT '文件id', `FC_REQUEST_ID` varchar(32) DEFAULT NULL COMMENT 'fc_request主键', `LOAN_NO` varchar(32) DEFAULT NULL COMMENT '借据号', `LEND_TERM` int(11) DEFAULT NULL COMMENT '贷款期限', `ANS_REPAYMENT_DATE` varchar(32) DEFAULT NULL COMMENT '应还日期', `ANS_PRINCIPAL` varchar(32) DEFAULT NULL COMMENT '贷款止期', `ANS_INTEREST` varchar(32) DEFAULT NULL COMMENT '应还利息', `ANS_REPAYMENT_MONEY` varchar(32) DEFAULT NULL COMMENT '应还合计金额', `CREATE_TIME` varchar(32) DEFAULT NULL, `UPDATE_TIME` varchar(32) DEFAULT NULL, PRIMARY KEY (`ID`), KEY `I_FC_FILE_ID` (`FC_FILE_ID`), KEY `I_FC_LOAN_NO` (`LOAN_NO`), KEY `I_LEND_TERM` (`LEND_TERM`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='邮储资方银行每天同步还款计划文件临时表'; INSERT INTO `apzl`.`awe_do_catalog` (`dono`, `doname`, `dodescribe`, `dotype`, `doclass`, `isinuse`, `colcount`, `modeid`, `jboclass`, `jbofrom`, `jbowhere`, `jbogroup`, `jboorder`, `businessprocess`, `exportflag`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `remark`, `isvalidate`, `parent`) VALUES ('creditAuthListLoan', '征信授权信息列表-非业务申请阶段', NULL, '30', NULL, '1', '1', 'default', 'jbo.app.tenwa.customer.VI_LB_IDENTITY_CHECK_CREDITAUTH_LOAN', 'O LEFT JOIN jbo.com.tenwa.lease.comm.LB_PROJECT_INFO lbi ON O.flowunid=lbi.ID LEFT JOIN jbo.app.tenwa.doc.LB_DOCRELATIVE ldr ON ldr.PROJ_ID=lbi.PROJECT_NO AND ldr.CUST_ID=O.certId AND ldr.OBJECTTYPE=O.credittype LEFT JOIN jbo.app.tenwa.doc.LB_DOCLIBRARY ldl ON ldl.relative_id=ldr.id LEFT JOIN jbo.app.tenwa.doc.LB_DOCATTRIBUTE lda ON lda.library_id=ldl.id LEFT JOIN jbo.app.tenwa.doc.LB_DOC_CONTRACT_LIST ldcl ON ldcl.attribute_id=lda.id', 'O.FLOWUNID=:projectId', NULL, NULL, NULL, NULL, 'SYS_Designer', '2018/07/12 09:38:36', 'SYS_Designer', '2018/07/12 09:38:36', NULL, '1', NULL); INSERT INTO `apzl`.`awe_do_catalog` (`dono`, `doname`, `dodescribe`, `dotype`, `doclass`, `isinuse`, `colcount`, `modeid`, `jboclass`, `jbofrom`, `jbowhere`, `jbogroup`, `jboorder`, `businessprocess`, `exportflag`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `remark`, `isvalidate`, `parent`) VALUES ('creditAuthList', '征信授权信息列表', NULL, '30', NULL, '1', '1', 'default', 'jbo.app.tenwa.customer.VI_LB_IDENTITY_CHECK_CREDITAUTH', 'O LEFT JOIN jbo.com.tenwa.lease.comm.LB_PROJECT_INFO_TEMP lbit ON O.flowunid=lbit.FLOWUNID LEFT JOIN jbo.app.tenwa.doc.LB_DOCRELATIVE ldr ON ldr.PROJ_ID=lbit.PROJECT_NO AND ldr.CUST_ID=O.certId AND ldr.OBJECTTYPE=O.credittype LEFT JOIN jbo.app.tenwa.doc.LB_DOCLIBRARY ldl ON ldl.relative_id=ldr.id LEFT JOIN jbo.app.tenwa.doc.LB_DOCATTRIBUTE lda ON lda.library_id=ldl.id LEFT JOIN jbo.app.tenwa.doc.LB_DOC_CONTRACT_LIST ldcl ON ldcl.attribute_id=lda.id', 'O.FLOWUNID=:FlowUnid', NULL, NULL, NULL, NULL, 'SYS_Designer', '2018/07/12 09:38:36', 'SYS_Designer', '2018/07/12 09:38:36', NULL, '1', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1000', '1000', '1', 'O', 'fullName', 'fullName', 'String', '', '姓名', '', '1', 'Text', '1', '1', '', '', 'style={width:50px;}', '20', '1', '0', '0', '1', '1', '1', '0', '', '', 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1010', '1010', '1', 'O', 'certId', 'certId', 'String', '', '身份证编号', '', '1', 'Text', '1', '1', '', '', 'style={width:150px;}', '20', '1', '0', '0', '1', '1', '1', '0', '', '', 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1020', '1020', '1', 'O', 'relation', 'relation', 'String', '', '身份', '', '1', 'Text', '1', '1', '', '', 'style={width:50px;}', '20', '1', '0', '0', '1', '1', '1', '0', '', '', 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1030', '1030', '1', 'O', 'flowunid', 'flowunid', 'String', NULL, '流程编号', NULL, '1', 'Text', '1', '1', NULL, NULL, NULL, '20', '0', '0', '0', '1', '1', '1', '0', NULL, NULL, 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', NULL, '1', NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1040', '1040', '1', 'O', 'phone', 'phone', 'String', '', '电话号', '', '1', 'Text', '1', '1', '', '', 'style={width:90px;}', '20', '1', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2019/06/17 11:27:30', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1041', '1041', '1', 'O', 'creditauth', 'creditauth', 'String', '', '授权模板', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2019/06/17 11:27:30', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1042', '1042', '1', 'O', 'credittype', 'credittype', 'String', '', '授权模板类型', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2019/06/17 11:27:30', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1060', '1060', '1', 'lda', 'ID', 'ID', 'String', '', '文件id', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '0', '0', NULL, '', '', 'SYS_Designer', '2018/07/26 18:17:01', '8006U00000001', '2021/07/13 14:04:10', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1070', '1070', '1', 'ldcl', 'sign_type', 'sign_type', 'String', NULL, '签约状态', NULL, '1', 'FlatSelect', '1', '1', 'Code', 'contract_sign_status', 'style={width:50px;}', '20', '1', '0', '0', '1', '0', '1', '0', NULL, NULL, 'SYS_DESIGNER', '2018/06/04 19:47:42', 'admin', '2021/07/19 15:39:01', '0', NULL, '1', NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1080', '1080', '1', 'ldcl', 'sendprocess', 'sendprocess', 'String', NULL, '发送状态', NULL, '1', 'FlatSelect', '1', '1', 'Code', 'sendprocess', 'style={width:50px;}', '20', '1', '0', '0', '1', '0', '1', '0', NULL, NULL, 'SYS_DESIGNER', '2018/06/04 19:47:42', 'admin', '2021/07/19 15:39:01', '0', NULL, '1', NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthListLoan', '1090', '1090', '1', '', 'com.tenwa.channelportal.action.alpha.DocListCreditAuth.findFileListByUser(certId,relation,flowunid)', 'fileList', 'String', '', '附件清单', '', '1', 'Text', '1', '1', '', '', 'style={width:600px;word-break:break-all;}', NULL, '1', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'admin', '2021/07/19 15:39:01', '', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1000', '1000', '1', 'O', 'fullName', 'fullName', 'String', '', '姓名', '', '1', 'Text', '1', '1', '', '', 'style={width:50px;}', '20', '1', '0', '0', '1', '1', '1', '0', '', '', 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1010', '1010', '1', 'O', 'certId', 'certId', 'String', '', '身份证编号', '', '1', 'Text', '1', '1', '', '', 'style={width:150px;}', '20', '1', '0', '0', '1', '1', '1', '0', '', '', 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1020', '1020', '1', 'O', 'relation', 'relation', 'String', '', '身份', '', '1', 'Text', '1', '1', '', '', 'style={width:50px;}', '20', '1', '0', '0', '1', '1', '1', '0', '', '', 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1030', '1030', '1', 'O', 'flowunid', 'flowunid', 'String', NULL, '流程编号', NULL, '1', 'Text', '1', '1', NULL, NULL, NULL, '20', '0', '0', '0', '1', '1', '1', '0', NULL, NULL, 'SYS_DESIGNER', '2018/07/12 09:38:36', 'admin', '2021/07/19 15:39:01', '0', NULL, '1', NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1040', '1040', '1', 'O', 'phone', 'phone', 'String', '', '电话号', '', '1', 'Text', '1', '1', '', '', 'style={width:90px;}', '20', '1', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2019/06/17 11:27:30', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1041', '1041', '1', 'O', 'creditauth', 'creditauth', 'String', '', '授权模板', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2019/06/17 11:27:30', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1042', '1042', '1', 'O', 'credittype', 'credittype', 'String', '', '授权模板类型', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2019/06/17 11:27:30', 'admin', '2021/07/19 15:39:01', '0', '', '1', '', '', '', ''); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1060', '1060', '1', 'lda', 'ID', 'ID', 'String', '', '文件id', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '0', '0', NULL, '', '', 'SYS_Designer', '2018/07/26 18:17:01', '8006U00000001', '2021/07/13 14:04:10', '0', '', '1', '', '', '', NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1070', '1070', '1', 'ldcl', 'sign_type', 'sign_type', 'String', NULL, '签约状态', NULL, '1', 'FlatSelect', '1', '1', 'Code', 'contract_sign_status', 'style={width:50px;}', '20', '1', '0', '0', '1', '0', '1', '0', NULL, NULL, 'SYS_DESIGNER', '2018/06/04 19:47:42', 'admin', '2021/07/19 15:39:01', '0', NULL, '1', NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1080', '1080', '1', 'ldcl', 'sendprocess', 'sendprocess', 'String', NULL, '发送状态', NULL, '1', 'FlatSelect', '1', '1', 'Code', 'sendprocess', 'style={width:50px;}', '20', '1', '0', '0', '1', '0', '1', '0', NULL, NULL, 'SYS_DESIGNER', '2018/06/04 19:47:42', 'admin', '2021/07/19 15:39:01', '0', NULL, '1', NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`awe_do_library` (`dono`, `colindex`, `sortno`, `isinuse`, `coltablename`, `colactualname`, `colname`, `coltype`, `coldefaultvalue`, `colheader`, `colunit`, `colcolumntype`, `coleditstyle`, `colcheckformat`, `colalign`, `coleditsourcetype`, `coleditsource`, `colhtmlstyle`, `collimit`, `colvisible`, `colreadonly`, `colrequired`, `colsortable`, `isfilter`, `colspan`, `isautocomplete`, `groupid`, `colfilterrefid`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `isaudit`, `colfilterattrs`, `isupdate`, `parentcolindex`, `tips`, `colinnerbtevent`, `colfilteroptions`) VALUES ('creditAuthList', '1090', '1090', '1', '', 'com.tenwa.channelportal.action.alpha.DocListCreditAuth.findFileListByUser(certId,relation,flowunid)', 'fileList', 'String', '', '附件清单', '', '1', 'Text', '1', '1', '', '', 'style={width:600px;word-break:break-all;}', NULL, '1', '0', '0', '1', '0', '0', '', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'admin', '2021/07/19 15:39:01', '', '', '1', '', '', '', ''); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('1', 'PSBC', '邮储助贷', 'BusinessApplyFlow', '信审', '01', '身份证-正面', 'jpg,jpeg,png,pdf', '073003', '1', '申请阶段-身份证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('2', 'PSBC', '邮储助贷', 'BusinessApplyFlow', '信审', '02', '身份证-反面', 'jpg,jpeg,png,pdf', '073003', '1', '申请阶段-身份证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('3', 'PSBC', '邮储助贷', 'BusinessApplyFlow', '信审', '08', '征信授权书', 'jpg,jpeg,png,pdf', '99002', '1', '征信授权书-邮储', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('4', 'PSBC', '邮储助贷', 'BusinessApplyFlow', '信审', '09', '借款服务确认书', 'jpg,jpeg,png,pdf', '99003', '1', '借款服务确认书-邮储', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('5', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'idcard', '身份证', 'jpg,jpeg,png,pdf', '073003', '1', '申请阶段-身份证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('6', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'spouseIdcard', '配偶身份证原件', 'jpg,jpeg,png,pdf', '073003', '1', '申请阶段-身份证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('7', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'relationship', '借款人单身声明/结婚证/离婚证', 'jpg,jpeg,png,pdf', '073003', '1', '身份证-测试', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('8', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'vehicleTrade', '购车协议', 'jpg,jpeg,png,pdf', '074001', '1', '放款阶段-购车合同', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('9', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'certificate', '车辆合格证', 'jpg,jpeg,png,pdf', '074007', '1', '放款阶段-车辆合格证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('10', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'purchaseInvoice', '车辆发票', 'jpg,jpeg,png,pdf', '074008', '1', '放款阶段-车辆销售发票', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('11', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'purchasePartProof', '配件凭证', 'jpg,jpeg,png,pdf', '074017', '1', '放款阶段-加装费支付凭证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('12', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'essentialInsurance', '保单-交强险', 'jpg,jpeg,png,pdf', '074010', '1', '放款阶段-保险单', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('13', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'insurancePolicy', '保单-商业险', 'jpg,jpeg,png,pdf', '074010', '1', '放款阶段-保险单', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('14', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'otherInsurance', '保单-其他', 'jpg,jpeg,png,pdf', '074010', '1', '放款阶段-保险单', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('15', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'affiliationLicense', '挂靠公司营业执照', 'jpg,jpeg,png,pdf', '073008', '1', '申请阶段-挂靠公司材料', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('16', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'affiliationAgree', '挂靠协议书', 'jpg,jpeg,png,pdf', '074005', '1', '放款阶段-挂靠协议(商用车版)', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('17', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'roadTransportPermit', '挂靠公司道路运输许可证', 'jpg,jpeg,png,pdf', '074016', '1', '放款阶段-《道路运输经营许可证》', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('18', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'financelease', '融资租赁协议及附件', 'jpg,jpeg,png,pdf', 'contract', '1', '放款阶段-融资租赁合同套系', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('19', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'deliveryProof', '车辆交付证明', 'jpg,jpeg,png,pdf', 'contract', '1', '放款阶段-融资租赁合同套系', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('20', 'PSBC', '邮储助贷', 'FundPaymentCarFlow', '放款', 'transferAgree', '所有权转让协议', 'jpg,jpeg,png,pdf', 'contract', '1', '放款阶段-融资租赁合同套系', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('101', 'PSBC', '邮储助贷', 'AfterLoanCarFlow', '贷后', 'purchaseProof', '付款证明', 'jpg,jpeg,png,pdf', '073003', '1', '身份证-测试', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('102', 'PSBC', '邮储助贷', 'AfterLoanCarFlow', '贷后', 'registrationcertificate', '车辆登记证书-车辆信息页', 'jpg,jpeg,png,pdf', '075002', '1', '放款后督阶段-车辆登记证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('103', 'PSBC', '邮储助贷', 'AfterLoanCarFlow', '贷后', 'registrationcertificate', '车辆登记证书-抵押信息页', 'jpg,jpeg,png,pdf', '075002', '1', '放款后督阶段-车辆登记证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('104', 'PSBC', '邮储助贷', 'AfterLoanCarFlow', '贷后', 'insurance', '保险单', 'jpg,jpeg,png,pdf', '074010', '1', '放款阶段-保险单', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('105', 'PSBC', '邮储助贷', 'AfterLoanCarFlow', '贷后', 'purchaseTaxInvoice', '购置税缴纳凭证', 'jpg,jpeg,png,pdf', '075001', '1', '放款后督阶段-车辆购置税凭证', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`fc_file_config` (`ID`, `CHANNEL_NO`, `CHANNEL_NAME`, `FC_FLOW_TYPE`, `FC_FLOW_TYPE_NAME`, `FC_FILE_CODE`, `FC_FILE_CODE_NAME`, `FC_FILE_TYPE`, `PRD_FILE_CODE`, `PRD_FILE_NUM`, `PRD_FILE_CODE_NAME`, `CREATE_TIME`, `UPDATE_TIME`, `del_flag`) VALUES ('106', 'PSBC', '邮储助贷', 'AfterLoanCarFlow', '贷后', 'purchaseInvoice', '汽车发票', 'jpg,jpeg,png,pdf', '073003', '1', '身份证-测试', '2021/06/28 09:30:01', '2021/06/28 09:30:01', '0'); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '0', '资方信息初始化成功', NULL, '0010', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1000', '推送预审成功', NULL, '0020', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1100', '推送预审失败', NULL, '0030', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1200', '预审返回失败', NULL, '0040', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1210', '资方预审通过', NULL, '0050', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1300', '推送订单信息成功', NULL, '0050', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1400', '推送订单信息失败', NULL, '0060', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1410', '初审返回否决', NULL, '0010', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1420', '资方初审通过', NULL, '0010', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1500', '终审返回失败', NULL, '0070', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1700', '资方终审通过', NULL, '0050', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1800', '合同签署失败', NULL, '0010', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '1900', '合同签署成功', NULL, '0010', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '2000', '推送放款申请成功', NULL, '0080', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '2100', '推送放款申请失败', NULL, '0090', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '2200', '资方放款否决', NULL, '0100', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '2250', '放款审批处理中', NULL, '0010', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '2300', '资方放款成功', NULL, '0100', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '3000', '推送贷后信息成功', NULL, '0110', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '3100', '推送贷后信息失败', NULL, '0120', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('fc_request_sts', '3200', '贷后信息返回失败', NULL, '0130', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/05/31 15:16:14', 'SYS_Designer', '2021/05/31 15:16:14', NULL, NULL); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('source_product', 'PSBC01', '邮储产品01', '', '0010', '1', '添加时注意,itemno前面必须与资方ID相同', 'PSBC', '', '8', 'AP001', '', '', '', '', '', '', 'SYS_Designer', NULL, '2021/07/15 16:51:02', 'SYS_Designer', '2021/07/15 16:54:07', '', ''); INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('source_product', 'PSBC02', '邮储产品02', '', '0020', '1', '添加时注意,itemno前面必须与资方ID相同', 'PSBC', '', '5.5', 'AP002', '', '', '', '', '', '', 'SYS_Designer', NULL, '2021/07/15 16:51:02', 'SYS_Designer', '2021/07/15 16:54:07', '', ''); INSERT INTO `apzl`.`bf_template` (`ID`, `SERIALNO`, `SORTNUMBER`, `TEMPLATENAME`, `TEMPLATESHOWNAME`, `TEMPLATEPATH`, `TEMPLATETYPE`, `OPERATETYPE`, `CALLBACK`, `CREATEMETHOD`, `DOCTYPE`, `ONECLASSIFY`, `TWOCLASSIFY`, `THREECLASSIFY`, `FOURCLASSIFY`, `TEMPLATEVERSION`, `STATUS`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `INPUTTIME`, `UPDATEUSERID`, `UPDATEORGID`, `UPDATETIME`, `CREATECONDITION`, `CREATESHEETCONDITION`) VALUES ('65b12cbfd98611eb970e00163e0ad612', NULL, '', '征信授权书', '征信授权书_{customername}.docx', '征信授权书.docx', 'word', 'create', '', NULL, '030', '030002', '', '', '', '1', '', '天津', 'administrator', '8009001', '2021/02/18 15:14:43', 'admin', '8009001', '2021/07/12 14:26:50', '', ''); INSERT INTO `apzl`.`bf_template` (`ID`, `SERIALNO`, `SORTNUMBER`, `TEMPLATENAME`, `TEMPLATESHOWNAME`, `TEMPLATEPATH`, `TEMPLATETYPE`, `OPERATETYPE`, `CALLBACK`, `CREATEMETHOD`, `DOCTYPE`, `ONECLASSIFY`, `TWOCLASSIFY`, `THREECLASSIFY`, `FOURCLASSIFY`, `TEMPLATEVERSION`, `STATUS`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `INPUTTIME`, `UPDATEUSERID`, `UPDATEORGID`, `UPDATETIME`, `CREATECONDITION`, `CREATESHEETCONDITION`) VALUES ('65bd277ad98611eb970e00163e0ad612', NULL, '', '征信授权书_邮储', '征信授权书_邮储_{customername}.docx', '征信授权书_邮储.docx', 'word', 'create', '', NULL, '030', '030002', '', '', '', '1', '', '天津', 'administrator', '8009001', '2021/02/18 15:14:43', 'admin', '8009001', '2021/07/23 15:24:39', '', ''); INSERT INTO `apzl`.`bf_template` (`ID`, `SERIALNO`, `SORTNUMBER`, `TEMPLATENAME`, `TEMPLATESHOWNAME`, `TEMPLATEPATH`, `TEMPLATETYPE`, `OPERATETYPE`, `CALLBACK`, `CREATEMETHOD`, `DOCTYPE`, `ONECLASSIFY`, `TWOCLASSIFY`, `THREECLASSIFY`, `FOURCLASSIFY`, `TEMPLATEVERSION`, `STATUS`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `INPUTTIME`, `UPDATEUSERID`, `UPDATEORGID`, `UPDATETIME`, `CREATECONDITION`, `CREATESHEETCONDITION`) VALUES ('134f3d88e2f811eb970e00163e0ad612', NULL, '', '借款服务确认书_邮储', '借款服务确认书_邮储_{customername}.docx', '借款服务确认书_邮储.docx', 'word', 'create', '', NULL, '030', '030002', '', '', '', '1', '', '天津', 'administrator', '8009001', '2021/02/18 15:14:43', 'admin', '8009001', '2021/07/14 09:20:13', '', ''); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('0d36cd64dfd911eb970e00163e0ad612', '91014', 'credAuthUserSub5', '征信授权用户05', 'tag_type2', 'value_type3', 'phone', 'SELECT :{PLAN_NUMBER} phone FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('60578251deec11eb970e00163e0ad612', '91010', 'credAuthUserSub1', '征信授权用户01', 'tag_type2', 'value_type3', 'username', 'SELECT :{customername} username FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('605dcb6ddeec11eb970e00163e0ad612', '91011', 'credAuthUserSub2', '征信授权用户02', 'tag_type2', 'value_type3', 'id_card', 'SELECT :{contract_no} id_card FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('6062d500deec11eb970e00163e0ad612', '91012', 'credAuthUserSub3', '征信授权用户03', 'tag_type2', 'value_type3', 'username', 'SELECT :{customername} username FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('606806aedeec11eb970e00163e0ad612', '91013', 'credAuthUserSub4', '征信授权用户04', 'tag_type2', 'value_type3', 'id_card', 'SELECT :{contract_no} id_card FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('706dd501e44111eb970e00163e0ad612', '91015', 'credAuthUserSub6', '征信授权用户06', 'tag_type2', 'value_type3', 'FULLADDRESS', 'SELECT FULLADDRESS from CUSTOMER_ADDRESS_TEMP where flowunid=:{insurance_no}', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('b39d0025de4811eb970e00163e0ad612', '91001', 'credAuthUser1', '征信授权用户1', 'tag_type2', 'value_type3', 'username, id_card, mobile', 'SELECT :{customername} username,:{contract_no} id_card,:{PLAN_NUMBER} mobile FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_lableconfig` (`ID`, `TAGNUMBER`, `TAGNAME`, `TITLE`, `TAGTYPE`, `VALUETYPE`, `VALUEFIELD`, `VALUEMETHOD`, `THOUSANDSFIELD`, `ISSHOEINDEX`, `REMARK`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`, `OPERATORCLASS`) VALUES ('b3a1ba88de4811eb970e00163e0ad612', '91002', 'credAuthUser2', '征信授权用户2', 'tag_type2', 'value_type3', 'username, id_card, mobile', 'SELECT :{customername} username,:{CUST_ID} id_card,:{PLAN_NUMBER} mobile FROM DUAL', NULL, 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'word_default_class'); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('004a12c3cb9f4d458b0302688732130f', 'b3a1ba88de4811eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('0314bb23f05e4ab28f5c7b094837d85a', 'b39d0025de4811eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('038ff76ca3e345ac9c1698a22d365fd4', '606806aedeec11eb970e00163e0ad612', '65b12cbfd98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('227c13cb098648d194e716efe0c8f05c', '60578251deec11eb970e00163e0ad612', '65b12cbfd98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('38691bb81512411ab370550c32aeb365', '706dd501e44111eb970e00163e0ad612', '134f3d88e2f811eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('677b9a8ebcae4210b0f513178fb5a757', '606806aedeec11eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('6c4aa41c80d04d75a581d94b88d1ce33', '605dcb6ddeec11eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('6e83c79e20e040c8a3e6dfafbf37e993', '0d36cd64dfd911eb970e00163e0ad612', '134f3d88e2f811eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('86d6cd9c29a343d7b31b35df4a30d744', '605dcb6ddeec11eb970e00163e0ad612', '65b12cbfd98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('a6f0641f4b174c5887263aba2ead9e6a', 'b39d0025de4811eb970e00163e0ad612', '65b12cbfd98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('ab33d802bec747728a7a5f76d6acba26', '6062d500deec11eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('c6631e80ca2d4123a41fe72b3c1a3cd7', '60578251deec11eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('cf9c36f6d34e4977856257dea19b561b', '0d36cd64dfd911eb970e00163e0ad612', '65bd277ad98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('d6ac5d284c2b465d84eac799a1c9ef13', '6062d500deec11eb970e00163e0ad612', '65b12cbfd98611eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`bf_templatelable` (`ID`, `LABLEID`, `TEMPLATEID`, `INPUTUSERID`, `INPUTORGID`, `UPDATEUSERID`, `UPDATEORGID`, `INPUTTIME`, `UPDATETIME`) VALUES ('f2d0b0b0a44f4ed8974e9859dbd49a6b', '606806aedeec11eb970e00163e0ad612', '134f3d88e2f811eb970e00163e0ad612', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `apzl`.`prd_nodeinfo` (`nodeid`, `nodename`, `sortno`, `isinuse`, `itemdescribe`, `inputuserid`, `inputorgid`, `inputtime`, `updateuserid`, `updatetime`, `initscript`, `exportscript`, `phasescript`, `deletescript`, `remark`, `formalClass`, `querycondition`) VALUES ('990004', '征信和借款服务签约', '990004', '1', '/Tenwa/alpha/creditAuth/creditAuthList.jsp', 'admin', '8009001', '2021/07/06', 'administrator', '2021/07/20', '', '', '', '', '', '', ''); -- 创建资金来源与产品配置表 create table lb_product_corpus_source ( id varchar(32) not null primary key, product_id varchar(32) null comment '产品ID', corpus_source varchar(32) null comment '资金来源', channel_product_id varchar(32) null comment '对应资方产品', order_list int null comment '排序', inputtime varchar(32) null, inputuserid varchar(32) null, updatetime varchar(32) null, updateuserid varchar(32) null, constraint product_corpus_index unique (product_id, corpus_source) ); -- 视图 drop view vi_product_corpus_source; create definer = apzl@`%` view vi_product_corpus_source as select `t`.`product_id` AS `product_id`, `bt`.`typename` AS `PRODUCT_NAME`, group_concat(`t`.`corpus_source` order by `t`.`order_list` ASC separator '>') AS `corpus_source_list` from (((select `apzl`.`lb_product_corpus_source`.`product_id` AS `product_id`, concat(`getItemName`('corpus_source', `apzl`.`lb_product_corpus_source`.`corpus_source`),'(',`getItemName`('source_product', `apzl`.`lb_product_corpus_source`.`CHANNEL_PRODUCT_ID`),')') AS `corpus_source`, `apzl`.`lb_product_corpus_source`.`order_list` AS `order_list` from `apzl`.`lb_product_corpus_source`)) `t` left join `apzl`.`business_type` `bt` on ((`bt`.`typeno` = `t`.`product_id`))) group by `t`.`product_id`; --创建分润表 create table lc_profit_plan ( id varchar(32) not null primary key, rent_plan_id varchar(32) null comment '对应租金计划ID', corpus_rate varchar(32) null comment '资方利率', profit decimal(22, 2) null comment '分润金额', inputtime varchar(32) null ) comment '资方分润计划'; create index rent_id_idx on lc_profit_plan (rent_plan_id); -- 数据字典 delete from code_library where codeno='corpus_source'; INSERT INTO apzl.code_library (codeno, itemno, itemname, bankno, sortno, isinuse, itemdescribe, itemattribute, relativecode, attribute1, attribute2, attribute3, attribute4, attribute5, attribute6, attribute7, attribute8, inputuser, inputorg, inputtime, updateuser, updatetime, remark, helptext) VALUES ('corpus_source', 'AP', '安鹏自有资金', null, '0010', '1', null, null, null, null, null, null, null, null, null, null, null, 'SYS_Designer', null, '2021/05/19 15:16:14', 'SYS_Designer', '2021/05/19 15:16:14', null, null); INSERT INTO apzl.code_library (codeno, itemno, itemname, bankno, sortno, isinuse, itemdescribe, itemattribute, relativecode, attribute1, attribute2, attribute3, attribute4, attribute5, attribute6, attribute7, attribute8, inputuser, inputorg, inputtime, updateuser, updatetime, remark, helptext) VALUES ('corpus_source', 'JJCCB', '九江银行', null, '0030', '1', null, null, null, '1', null, null, null, null, null, null, null, 'SYS_Designer', null, '2021/05/19 15:16:14', 'SYS_Designer', '2021/05/19 15:16:14', null, null); INSERT INTO apzl.code_library (codeno, itemno, itemname, bankno, sortno, isinuse, itemdescribe, itemattribute, relativecode, attribute1, attribute2, attribute3, attribute4, attribute5, attribute6, attribute7, attribute8, inputuser, inputorg, inputtime, updateuser, updatetime, remark, helptext) VALUES ('corpus_source', 'PSBC', '邮储银行', null, '0020', '1', null, null, null, '1', null, null, null, null, null, null, null, 'SYS_Designer', null, '2021/05/19 15:16:14', 'SYS_Designer', '2021/05/19 15:16:14', null, null); -- 资金来源排序总页面模板 delete from awe_do_catalog where dono='VI_PRODUCT_CORPUS_SOURCE'; delete from awe_do_library where dono='VI_PRODUCT_CORPUS_SOURCE'; INSERT INTO apzl.awe_do_catalog (dono, doname, dodescribe, dotype, doclass, isinuse, colcount, modeid, jboclass, jbofrom, jbowhere, jbogroup, jboorder, businessprocess, exportflag, inputuser, inputtime, updateuser, updatetime, remark, isvalidate, parent) VALUES ('VI_PRODUCT_CORPUS_SOURCE', '产品资金来源清单', null, '30', null, '1', '1', 'default', 'jbo.prd.VI_PRODUCT_CORPUS_SOURCE', 'O', '', '', '', '', '', 'SYS_Designer', '2021/05/21 11:12:13', 'SYS_Designer', '2021/05/21 11:12:13', null, '1', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('VI_PRODUCT_CORPUS_SOURCE', '1000', '1000', '1', 'O', 'PRODUCT_ID', 'PRODUCT_ID', 'String', '', '产品编号', '', '1', 'Text', '1', '1', '', '', '', '20', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 11:12:13', 'SYS_Designer', '2021/05/21 11:12:40', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('VI_PRODUCT_CORPUS_SOURCE', '1010', '1010', '1', 'O', 'PRODUCT_NAME', 'PRODUCT_NAME', 'String', '', '产品名称', '', '1', 'Text', '1', '1', '', '', '', '20', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 11:12:13', 'SYS_Designer', '2021/05/21 11:12:13', '', '', '1', '', '', null, null); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('VI_PRODUCT_CORPUS_SOURCE', '1020', '1020', '1', 'O', 'CORPUS_SOURCE_LIST', 'CORPUS_SOURCE_LIST', 'String', '', '资金来源顺序', '', '1', 'Text', '1', '1', '', '', '', '20', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 11:12:13', 'SYS_Designer', '2021/05/21 11:12:13', '', '', '1', '', '', null, null); -- 新增资方配置选择SQL delete from select_catalog where selname='selectProductList'; INSERT INTO apzl.select_catalog (selname, seltype, seldescribe, seltablename, selprimarykey, selbrowsemode, selargs, selhidefield, selcode, selfieldname, selfielddisp, selreturnvalue, selfilterfield, isinuse, mutilorsingle, attribute1, attribute2, attribute3, attribute4, attribute5, inputuser, inputorg, inputtime, updateuser, updatetime, remark) VALUES ('selectProductList', 'Sql', '选择产品', 'business_type', 'typeno', 'Grid', '', 'typeno', 'select typeno,typename from business_type where attribute2=''car_product''', '产品编号,产品名称', 'typename@style={width:250px;}', 'typeno@typename', 'typename', '1', 'Single', '', '', '', '', '', 'SYS_Designer', '', '2019/08/24 10:35:24', 'SYS_Designer', '2021/04/09 15:29:14', ''); -- tab1页面模板 delete from awe_do_catalog where dono='LbProductInfo'; delete from awe_do_library where dono='LbProductInfo'; delete from awe_do_group where dono='LbProductInfo'; INSERT INTO apzl.awe_do_catalog (dono, doname, dodescribe, dotype, doclass, isinuse, colcount, modeid, jboclass, jbofrom, jbowhere, jbogroup, jboorder, businessprocess, exportflag, inputuser, inputtime, updateuser, updatetime, remark, isvalidate, parent) VALUES ('LbProductInfo', '产品详情', null, '30', null, '1', '2', 'default', 'jbo.prd.BUSINESS_TYPE', 'O', 'TypeNo=:productId', '', '', '', null, 'SYS_Designer', '2021/05/21 11:49:39', 'SYS_Designer', '2021/05/21 12:01:00', '', '1', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LbProductInfo', '1000', '1000', '1', 'O', 'TypeNo', 'TypeNo', 'String', '', '产品编号', '', '1', 'Text', '1', '1', '', '', '', '32', '1', '1', '1', '0', '0', 2, '0', '0010', '', 'SYS_Designer', '2021/05/21 11:49:39', 'SYS_Designer', '2021/05/21 12:01:00', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LbProductInfo', '1010', '1010', '1', 'O', 'TypeName', 'TypeName', 'String', '', '产品名称', '', '1', 'Text', '1', '1', '', '', '', '200', '1', '1', '1', '0', '0', 2, '0', '0010', '', 'SYS_Designer', '2021/05/21 11:49:39', 'SYS_Designer', '2021/05/21 14:56:57', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_group (dono, dockid, dockname, inputuser, inputtime, updateuser, updatetime, inputorg, sortno, grouphead, groupfoot, groupbody, colcount, styleid, isexpand, groupbody1, groupbody2) VALUES ('LbProductInfo', '0010', '基本信息', 'SYS_Designer', '2021/05/21 11:49:39', 'SYS_Designer', '2021/05/21 14:56:50', '', '0010', '', '', '', 2, '', '', '', ''); -- tab2页面模板 delete from awe_do_catalog where dono='LB_PRODUCT_CORPUS_SOURCE'; delete from awe_do_library where dono='LB_PRODUCT_CORPUS_SOURCE'; INSERT INTO apzl.awe_do_catalog (dono, doname, dodescribe, dotype, doclass, isinuse, colcount, modeid, jboclass, jbofrom, jbowhere, jbogroup, jboorder, businessprocess, exportflag, inputuser, inputtime, updateuser, updatetime, remark, isvalidate, parent) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '产品资金来源表', null, '30', null, '1', '1', 'default', 'jbo.prd.LB_PRODUCT_CORPUS_SOURCE', 'O', 'PRODUCT_ID=:productID ', '', 'O.order_list', 'com.amarsoft.awe.dw.handler.impl.CommonHandler', '', 'SYS_Designer', '2021/05/21 09:54:11', 'SYS_Designer', '2021/05/21 19:04:59', '', '1', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1000', '1000', '1', 'O', 'ID', 'ID', 'String', '', 'ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '1', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1010', '1010', '1', 'O', 'PRODUCT_ID', 'PRODUCT_ID', 'String', '', '产品ID', '', '1', 'Text', '1', '1', '', '', '', '32', '1', '1', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1020', '1020', '1', 'O', 'CORPUS_SOURCE', 'CORPUS_SOURCE', 'String', '', '资金来源', '', '1', 'Select', '1', '1', 'JBO', 'jbo.sys.CODE_LIBRARY,itemno,itemname,codeno=''corpus_source'' and isinuse=''1'' and attribute1=''1''', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1025', '1025', '1', 'O', 'CHANNEL_PRODUCT_ID', 'CHANNEL_PRODUCT_ID', 'String', '', '对应资方产品', '', '1', 'Select', '1', '1', 'JBO', 'jbo.sys.CODE_LIBRARY,itemno,itemname,codeno=''source_product''', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', '', '', 'SYS_Designer', '2021/07/15 16:55:36', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1030', '1030', '1', 'O', 'ORDER_LIST', 'ORDER_LIST', 'Number', '', '资金顺序', '', '1', 'Text', '5', '1', '', '', '', '20', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1040', '1040', '1', 'O', 'INPUTTIME', 'INPUTTIME', 'String', '', '创建时间', '', '1', 'Text', '1', '2', '', '', '', '30', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1050', '1050', '1', 'O', 'INPUTUSERID', 'INPUTUSERID', 'String', '', '创建人', '', '1', 'Text', '1', '1', '', '', '', '30', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1060', '1060', '1', 'O', 'UPDATETIME', 'UPDATETIME', 'String', '', '更新时间', '', '1', 'Text', '1', '2', '', '', '', '30', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_PRODUCT_CORPUS_SOURCE', '1070', '1070', '1', 'O', 'UPDATEUSERID', 'UPDATEUSERID', 'String', '', '更新人', '', '1', 'Text', '1', '1', '', '', '', '30', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/21 09:54:11', 'administrator', '2021/07/15 16:42:31', '', '', '1', '', '', '', ''); --消息推送数据字典添加 INSERT INTO apzl.code_library (codeno, itemno, itemname, bankno, sortno, isinuse, itemdescribe, itemattribute, relativecode, attribute1, attribute2, attribute3, attribute4, attribute5, attribute6, attribute7, attribute8, inputuser, inputorg, inputtime, updateuser, updatetime, remark, helptext) VALUES ('message_catalog', 'supple_file', '资方资料补充', null, '0140', '1', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); -- 资料补充消息推送配置 INSERT INTO apzl.bt_bussiness_message_config (id, message_no, message_catalog, message_title, send_person, message_class, message_page, message_time, message_status, INPUTUSERID, INPUTTIME, INPUTORGID, UPDATEUSERID, UPDATEORGID, UPDATETIME, cparam, memo, is_valid, defaultStart) VALUES ('7373dc10d40211eb970e00163e0ad612', '0004', 'supple_file', '有材料需要补充', '[{usertype:"指定人员",userinfo:"admin,admin"}]', 'kong', '/com/tenwa/apzl/CorpusSource/FcRequestDocTab.jsp', null, 'PAUSED', null, null, null, null, null, null, null, null, 'valid', 'Y'); -- 请求页面list模板 delete from awe_do_catalog where dono='FC_REQUEST'; delete from awe_do_library where dono='FC_REQUEST'; INSERT INTO apzl.awe_do_catalog (dono, doname, dodescribe, dotype, doclass, isinuse, colcount, modeid, jboclass, jbofrom, jbowhere, jbogroup, jboorder, businessprocess, exportflag, inputuser, inputtime, updateuser, updatetime, remark, isvalidate, parent) VALUES ('FC_REQUEST', '接口状态表', null, '30060', null, '1', '1', 'default', 'jbo.oti.FC_REQUEST', 'O', 'O.DEL_FLAG=''0''', '', 'SUPPLEMENT_STS desc,SUPPLEMENT_TIME desc,UPDATE_TIME desc', '', '', 'SYS_Designer', '2021/05/31 14:18:54', 'SYS_Designer', '2021/06/29 11:38:27', '', '1', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1000', '1000', '1', 'O', 'ID', 'ID', 'String', '', '资金渠道申请ID', '', '1', 'Text', '1', '1', '', '', '', '32', '1', '0', '1', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1010', '1010', '1', 'O', 'FC_LOAN_ID', 'FC_LOAN_ID', 'String', '', '资金渠道放款申请ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1020', '1020', '1', 'O', 'CHANNEL_NO', 'CHANNEL_NO', 'String', '', '资金渠道编号', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1030', '1030', '1', 'O', 'CHANNEL_NAME', 'CHANNEL_NAME', 'String', '', '资金渠道名称', '', '1', 'Text', '1', '1', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1040', '1040', '1', 'O', 'PROJECT_ID', 'PROJECT_ID', 'String', '', '项目ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1050', '1050', '1', 'O', 'PROJECT_NO', 'PROJECT_NO', 'String', '', '项目编号', '', '1', 'Text', '1', '1', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1060', '1060', '1', 'O', 'CONTRACT_ID', 'CONTRACT_ID', 'String', '', '合同ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1070', '1070', '1', 'O', 'CONTRACT_NO', 'CONTRACT_NO', 'String', '', '合同编号', '', '1', 'Text', '1', '1', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1080', '1080', '1', 'O', 'PRODUCT_ID', 'PRODUCT_ID', 'String', '', '产品ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1090', '1090', '1', 'O', 'PRODUCT_NAME', 'PRODUCT_NAME', 'String', '', '产品名称', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1100', '1100', '1', 'O', 'DISTRIBUTOR_ID', 'DISTRIBUTOR_ID', 'String', '', '资经销商ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1110', '1110', '1', 'O', 'DISTRIBUTOR_NAME', 'DISTRIBUTOR_NAME', 'String', '', '经销商名称', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1120', '1120', '1', 'O', 'CUSTOMER_ID', 'CUSTOMER_ID', 'String', '', '客户ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1130', '1130', '1', 'O', 'CUSTOMER_NAME', 'CUSTOMER_NAME', 'String', '', '客户名称', '', '1', 'Text', '1', '2', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1140', '1140', '1', 'O', 'FC_STATUS', 'FC_STATUS', 'String', '', '当前状态', '', '1', 'Select', '1', '1', 'Code', 'fc_request_sts', 'style={width:200px}', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1150', '1150', '1', 'O', 'FC_REMARK', 'FC_REMARK', 'String', '', '当前状态', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1155', '1155', '1', 'O', 'SUPPLEMENT_STS', 'SUPPLEMENT_STS', 'String', '', '是否需要补充资料', '', '1', 'Text', '1', '2', 'CodeTable', '0,否,1,是,2,提交完成待发送', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', null); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1156', '1156', '1', 'O', 'SUPPLEMENT_DESC', 'SUPPLEMENT_DESC', 'String', '', '补充描述', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', null, null); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1157', '1157', '1', 'O', 'SUPPLEMENT_TIME', 'SUPPLEMENT_TIME', 'String', '', '资料补充时间', '', '1', 'Date', null, '2', '', '', '', '', '1', '1', '0', '1', '1', 1, null, '', '', null, null, 'administrator', '2021/07/08 17:03:12', null, '', null, '', '', '', null); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1160', '1160', '1', 'O', 'CREATE_TIME', 'CREATE_TIME', 'String', '', '创建时间', '', '1', 'Date', '3', '2', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:03:12', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1170', '1170', '1', 'O', 'UPDATE_TIME', 'UPDATE_TIME', 'String', '', '修改时间', '', '1', 'Date', '3', '2', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/07/08 17:02:37', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FC_REQUEST', '1180', '1180', '1', 'O', 'DEL_FLAG', 'DEL_FLAG', 'String', '', '有效标志', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_DESIGNER', '2021/05/31 14:18:55', 'administrator', '2021/06/29 13:26:32', '', '', '1', '', '', '', ''); -- 资料清单页面模板 delete from awe_do_catalog where dono='FcRequestFileList'; delete from awe_do_library where dono='FcRequestFileList'; INSERT INTO apzl.awe_do_catalog (dono, doname, dodescribe, dotype, doclass, isinuse, colcount, modeid, jboclass, jbofrom, jbowhere, jbogroup, jboorder, businessprocess, exportflag, inputuser, inputtime, updateuser, updatetime, remark, isvalidate, parent) VALUES ('FcRequestFileList', '接口资料表', null, '30060', null, '1', '1', 'default', 'jbo.oti.FC_REQUEST_FILE', 'O', 'O.FC_FLOW_TYPE=:fcFlowType and O.FC_REQUEST_ID=:fcRequestId and O.DEL_FLAG=''0''', 'O.FC_FILE_CODE', '', '', null, 'SYS_Designer', '2021/06/29 11:47:55', 'SYS_Designer', '2021/06/29 11:51:50', '', '1', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1000', '1000', '1', 'O', 'ID', 'ID', 'String', '', '唯一标识', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '1', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:55', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1010', '1010', '1', 'O', 'FC_REQUEST_ID', 'FC_REQUEST_ID', 'String', '', '资金渠道申请ID', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:55', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1020', '1020', '1', 'O', 'FC_FLOW_TYPE', 'FC_FLOW_TYPE', 'String', '', '流程类型', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:55', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1030', '1030', '1', 'O', 'FC_FLOW_TYPE_NAME', 'FC_FLOW_TYPE_NAME', 'String', '', '流程类型名称', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:55', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1040', '1040', '1', 'O', 'FC_FILE_CODE', 'FC_FILE_CODE', 'String', '', '资方:文件编号', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1050', '1050', '1', 'O', 'FC_FILE_CODE_NAME', 'FC_FILE_CODE_NAME', 'String', '', '文件类别', '', '1', 'Text', '1', '2', '', '', '', '32', '1', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1060', '1060', '1', 'O', 'FC_FILE_TYPE', 'FC_FILE_TYPE', 'String', '', '文件类型', '', '1', 'Text', '1', '2', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1070', '1070', '1', 'O', 'FILE_NAME', 'FILE_NAME', 'String', '', '文件名称', '', '1', 'Text', '1', '1', '', '', 'style={width:200px;word-break:break-all;}', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1080', '1080', '1', 'O', 'FILE_PATH', 'FILE_PATH', 'String', '', '文件路径', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '0', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'administrator', '2021/07/19 10:56:56', '', '', '1', '', '', '', ''); INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('FcRequestFileList', '1090', '1090', '1', 'O', 'FC_FILE_STS', 'FC_FILE_STS', 'String', '', '文件状态', '', '1', 'Text', '1', '1', '', '', '', '32', '0', '1', '0', '1', '1', 1, '0', '', '', 'SYS_Designer', '2021/06/29 11:47:56', 'administrator', '2021/07/19 10:56:56', '0', '', '1', '', '', '', ''); -- 租金计划转换 定时任务配置(数据字典中配置,还需要在系统中去配置定时任务触发) delete from code_library where codeno='MissionName' and itemname='租金计划转换'; INSERT INTO apzl.code_library (codeno, itemno, itemname, bankno, sortno, isinuse, itemdescribe, itemattribute, relativecode, attribute1, attribute2, attribute3, attribute4, attribute5, attribute6, attribute7, attribute8, inputuser, inputorg, inputtime, updateuser, updatetime, remark, helptext) VALUES ('MissionName', 'com.tenwa.lease.app.quartzmession.CorpusSourceRentPlanCopy', '租金计划转换', null, '0610', '1', '资方租金计划转换到C端', null, null, null, null, null, null, null, null, null, null, 'SYS_Designer', null, '2021/07/05 15:08:32', 'SYS_Designer', '2021/07/05 15:08:32', null, null); -- 资方信息模板显示 -- 业务申请 delete from awe_do_library where dono='VI_PROJECTINFO_APPROVAL' and colname='CORPUS_SOURCE'; INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('VI_PROJECTINFO_APPROVAL', '1320', '1320', '1', 'lpit', 'CORPUS_SOURCE', 'CORPUS_SOURCE', 'String', '', '资金来源', '', '1', 'Select', '1', '1', 'Code', 'corpus_source', '', '32', '1', '1', '0', '1', '0', 1, '', '0009', '', 'SYS_Designer', '2021/05/25 13:50:37', 'SYS_Designer', '2021/05/25 15:51:31', '0', '', '1', '', '', '', ''); -- 合同制作 delete from awe_do_library where dono='LBContractPersonBaseInfoTemp' and colname='CORPUS_SOURCE'; INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LBContractPersonBaseInfoTemp', '1070', '1070', '1', 'O', 'CORPUS_SOURCE', 'CORPUS_SOURCE', 'String', '', '资金来源', '', '1', 'Select', '1', '1', 'Code', 'corpus_source', '', '32', '1', '1', '0', '1', '0', 2, '', '0010', '', 'SYS_Designer', '2021/05/25 13:50:37', 'administrator', '2021/07/16 16:25:00', '0', '', '1', '', '', '', ''); -- 放款申请 delete from awe_do_library where dono='LB_CONTRACT_INFO_PAY' and colname='CORPUS_SOURCE'; INSERT INTO apzl.awe_do_library (dono, colindex, sortno, isinuse, coltablename, colactualname, colname, coltype, coldefaultvalue, colheader, colunit, colcolumntype, coleditstyle, colcheckformat, colalign, coleditsourcetype, coleditsource, colhtmlstyle, collimit, colvisible, colreadonly, colrequired, colsortable, isfilter, colspan, isautocomplete, groupid, colfilterrefid, inputuser, inputtime, updateuser, updatetime, isaudit, colfilterattrs, isupdate, parentcolindex, tips, colinnerbtevent, colfilteroptions) VALUES ('LB_CONTRACT_INFO_PAY', '7020', '7020', '1', 'O', 'CORPUS_SOURCE', 'CORPUS_SOURCE', 'String', '', '资金方', '', '1', 'Select', '1', '1', 'Code', 'corpus_source', '', '100', '1', '1', '0', '1', '0', 0, '', '0010', '', 'SYS_Designer', '2021/05/25 11:20:27', 'administrator', '2021/07/08 14:55:29', '0', '', '1', '', '', '', ''); -- 凭证定时任务 delete from code_library where codeno='MissionName' and itemname='资方放款凭证'; INSERT INTO apzl.code_library (codeno, itemno, itemname, bankno, sortno, isinuse, itemdescribe, itemattribute, relativecode, attribute1, attribute2, attribute3, attribute4, attribute5, attribute6, attribute7, attribute8, inputuser, inputorg, inputtime, updateuser, updatetime, remark, helptext) VALUES ('MissionName', 'com.tenwa.lease.app.quartzmession.CorpusSourceFundIncomeCreateVoucherJob', '资方放款凭证', null, '0620', '1', '资方放款凭证', null, null, null, null, null, null, null, null, null, null, 'SYS_Designer', null, '2021/07/05 15:08:32', 'SYS_Designer', '2021/07/05 15:08:32', null, null); CREATE ALGORITHM=UNDEFINED DEFINER=`apzl`@`%` SQL SECURITY DEFINER VIEW `vi_lb_identity_check_creditauth` AS (select `a`.`name` AS `fullName`,`a`.`certid` AS `certId`,`a`.`relation` AS `relation`,`a`.`creditauth` AS `creditauth`,`a`.`credittype` AS `credittype`,`a`.`flowunid` AS `flowunid`,`a`.`phone` AS `phone` from (select `ut`.`name` AS `name`,`ut`.`certid` AS `certid`,(case when (`ut`.`Partner_` = 'Y') then '共同申请人' when ((`ut`.`Partner_` = 'N') and (`ut`.`Spouse_` = 'Y')) then '配偶' when (`ut`.`Partner_` = 'gua') then '担保人' when (`ut`.`Partner_` = 'cust') then '申请人' else '' end) AS `relation`,(case when (`ut`.`creditauth` = 'ap') then '征信授权书_安鹏' when (`ut`.`creditauth` = 'yc') then '征信授权书_邮储' when (`ut`.`creditauth` = 'yc_audit') then '借款服务确认书_邮储' else '' end) AS `creditauth`,(case when (`ut`.`creditauth` = 'ap') then '99001' when (`ut`.`creditauth` = 'yc') then '99002' when (`ut`.`creditauth` = 'yc_audit') then '99003' else '' end) AS `credittype`,`ut`.`flowunid` AS `flowunid`,`ut`.`phone` AS `phone` from (select `cf1`.`name` AS `name`,`cf1`.`certid` AS `certid`,`cf1`.`Partner_` AS `Partner_`,`cf1`.`Spouse_` AS `Spouse_`,'ap' AS `creditauth`,`cf1`.`flowunid` AS `flowunid`,`cf1`.`tel` AS `phone` from `apzl`.`customer_family_temp` `cf1` where (`cf1`.`Partner_` = 'Y') union all (select `lgut`.`FULLNAME` AS `FULLNAME`,`lgut`.`CERTID` AS `CERTID`,'gua' AS `Partner_`,'gua' AS `Spouse_`,'ap' AS `creditauth`,`lgut`.`FLOWUNID` AS `flowunid`,`lgut`.`MOBILE` AS `phone` from `apzl`.`lb_guarantee_unit_temp` `lgut`) union all (select `ccpt`.`FULLNAME` AS `FULLNAME`,`ccpt`.`CERTID` AS `CERTID`,'cust' AS `Partner_`,'cust' AS `Spouse_`,'ap' AS `creditauth`,`ccpt`.`FLOWUNID` AS `flowunid`,`ccpt`.`mobile` AS `phone` from `apzl`.`customer_person_temp` `ccpt` where (`ccpt`.`BALANCESHEET` = '申请人'))) `ut`) `a`); CREATE ALGORITHM=UNDEFINED DEFINER=`apzl`@`%` SQL SECURITY DEFINER VIEW `vi_lb_identity_check_creditauth_loan` AS (select `a`.`name` AS `fullName`,`a`.`certid` AS `certId`,`a`.`relation` AS `relation`,`a`.`creditauth` AS `creditauth`,`a`.`credittype` AS `credittype`,`a`.`flowunid` AS `flowunid`,`a`.`phone` AS `phone` from (select `ut`.`name` AS `name`,`ut`.`certid` AS `certid`,(case when (`ut`.`Partner_` = 'Y') then '共同申请人' when ((`ut`.`Partner_` = 'N') and (`ut`.`Spouse_` = 'Y')) then '配偶' when (`ut`.`Partner_` = 'gua') then '担保人' when (`ut`.`Partner_` = 'cust') then '申请人' else '' end) AS `relation`,(case when (`ut`.`creditauth` = 'ap') then '征信授权书_安鹏' when (`ut`.`creditauth` = 'yc') then '征信授权书_邮储' when (`ut`.`creditauth` = 'yc_audit') then '借款服务确认书_邮储' else '' end) AS `creditauth`,(case when (`ut`.`creditauth` = 'ap') then '99001' when (`ut`.`creditauth` = 'yc') then '99002' when (`ut`.`creditauth` = 'yc_audit') then '99003' else '' end) AS `credittype`,`ut`.`flowunid` AS `flowunid`,`ut`.`phone` AS `phone` from (select `cf1`.`name` AS `name`,`cf1`.`certid` AS `certid`,`cf1`.`Partner_` AS `Partner_`,`cf1`.`Spouse_` AS `Spouse_`,'ap' AS `creditauth`,`cf1`.`PROJECT_ID` AS `flowunid`,`cf1`.`tel` AS `phone` from `apzl`.`customer_family` `cf1` where (`cf1`.`Partner_` = 'Y') union all (select `lgut`.`FULLNAME` AS `FULLNAME`,`lgut`.`CERTID` AS `CERTID`,'gua' AS `Partner_`,'gua' AS `Spouse_`,'ap' AS `creditauth`,`lgut`.`PROJECT_ID` AS `flowunid`,`lgut`.`MOBILE` AS `phone` from `apzl`.`lb_guarantee_unit` `lgut`) union all (select `ccpt`.`FULLNAME` AS `FULLNAME`,`ccpt`.`CERTID` AS `CERTID`,'cust' AS `Partner_`,'cust' AS `Spouse_`,'ap' AS `creditauth`,`lul`.`PROJECT_ID` AS `flowunid`,`ccpt`.`mobile` AS `phone` from (`apzl`.`customer_person` `ccpt` left join `apzl`.`lb_union_lessee` `lul` on((`ccpt`.`CUSTOMERID` = `lul`.`CUSTOMER_ID`))) where (`ccpt`.`BALANCESHEET` = '申请人'))) `ut`) `a`); -- 获取参数视图 create or replace view vi_corpus_source_param as select `lci`.`ID` AS `contractId`, lci.PROJECT_ID as projectId, lcc.CONTRACT_PLAN_NUMBER as contractPlanNumber, lcc.PROJECT_PLAN_NUMBER as projectPlanNumber, `lci`.`PRODUCT_ID` AS `productId`, `lci`.`distributor_id` AS `distributorId`, `lci`.`corpus_source` AS `corpusSource`, `lcc`.`PAYMENT_NUMBER` AS `paymentNumber`, `bt`.`attribute5` AS `splitType`, `lsr`.`splitting_ratio` AS `splittingRatio`, `frl`.`BUSINESS_RATE` AS `corpusSourceRate`, ca.bank_name as bankName, ca.account as account, ca.acc_number as accNumber from fc_request_loan frl join `apzl`.`fc_request` `fr` on frl.LOAN_NO = fr.FC_LOAN_ID left join `apzl`.`lb_contract_info` `lci` on `fr`.`CONTRACT_ID` = `lci`.`id` left join `apzl`.`lc_calc_condition` `lcc` on `lci`.`ID` = `lcc`.`CONTRACT_ID` left join `apzl`.`business_type` `bt` on `bt`.`typeno` = `lci`.`PRODUCT_ID` left join `apzl`.`lb_splitting_ratio` `lsr` on `lsr`.`distributor_id` = `lci`.`distributor_id` and `lsr`.`product_id` = `lci`.`PRODUCT_ID` left join `apzl`.`lb_product_corpus_source` `lpcs` on `lpcs`.`product_id` = `lci`.`PRODUCT_ID` and `lpcs`.`corpus_source` = `lci`.`corpus_source` left join lb_union_lessee lul on lul.CONTRACT_ID=lci.ID and lul.IS_MAIN='Y' left join customer_account ca on ca.customerid=lul.CUSTOMER_ID and ca.CONTRACT_ID=lci.id where frl.DEL_FLAG='0' and fr.DEL_FLAG='0'; INSERT INTO `apzl`.`code_library` (`codeno`, `itemno`, `itemname`, `bankno`, `sortno`, `isinuse`, `itemdescribe`, `itemattribute`, `relativecode`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`, `helptext`) VALUES ('MissionName', 'com.tenwa.lease.app.quartzmession.CorpusSourceOverdueRepurchaseCreateVoucherJob', '资方逾期回购生成凭证', NULL, '5101002', '1', '资方逾期回购生成凭证', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SYS_Designer', NULL, '2021/08/20 15:08:32', 'SYS_Designer', '2021/08/20 15:08:32', NULL, NULL);