风控中台调整-承租人单位地址修改,地址表初始化
This commit is contained in:
parent
ce209b2e2e
commit
84d1b80720
@ -5,7 +5,7 @@
|
||||
type="javax.sql.DataSource" maxActive="30" maxIdle="2" maxWait="10000"
|
||||
username="apzl" password="apzl@2018"
|
||||
driverClassName="com.mysql.jdbc.Driver"
|
||||
url="jdbc:mysql://47.93.34.101:10323/apzl?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=GBK&autoReconnectForPools=true&autoReconnect=true&useSSL=false" />
|
||||
url="jdbc:mysql://60.205.189.63:3306/apzl?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=GBK&autoReconnectForPools=true&autoReconnect=true&useSSL=false" />
|
||||
<!-- 18测试环境 -->
|
||||
<!-- <Resource name="jdbc/als" auth="Container" type="javax.sql.DataSource"
|
||||
maxActive="30" maxIdle="2" maxWait="10000" username="apzl" password="apzl@2018"
|
||||
|
||||
@ -51,6 +51,7 @@
|
||||
if(rightType.equals("ReadOnly")){
|
||||
doTemp.setColInnerBtEvent("fulladdress", "");//设置地址按钮
|
||||
doTemp.setColInnerBtEvent("NATIVEPLACE", "");//设置户籍地址按钮
|
||||
doTemp.setColInnerBtEvent("WORKADD", "");//设置户籍地址按钮
|
||||
}
|
||||
dwTemp.Style = "2";//freeform
|
||||
dwTemp.genHTMLObjectWindow(flowunid + "," + customerid);
|
||||
@ -305,6 +306,7 @@
|
||||
$("#ENTRYTIME").attr("ReadOnly","true");
|
||||
$("#WORKCORP")[0].width = $("#WORKCORP").parent().parent().parent()[0].clientWidth/2+200;
|
||||
$("#WORKADD")[0].width = $("#WORKADD").parent().parent().parent()[0].clientWidth/2+200;
|
||||
$("#WORKADD").css("width",$("#WORKADD").parent().parent().parent().parent()[0].clientWidth/2+200+"px");
|
||||
$("#WORKTEL")[0].width = $("#WORKTEL").parent().parent().parent()[0].clientWidth/2+200;
|
||||
if("ReadOnly" != "<%=rightType%>"){
|
||||
checkDriver();
|
||||
@ -586,7 +588,24 @@
|
||||
edit();
|
||||
}
|
||||
}
|
||||
|
||||
// 风控中台对接相关代码
|
||||
function selectWorkAddress(){
|
||||
let workAddressId = getItemValue(0,0,"work_address_id");
|
||||
AsDialog.PopView("/Tenwa/Lease/Flow/Project/BusinessApplication/personAddress.jsp",
|
||||
'addressId='+workAddressId,
|
||||
"resizable=yes;dialogWidth=600px;dialogHeight=355px;center:yes;status:no;statusbar:no",
|
||||
function(result){
|
||||
if(result == "cancel"){
|
||||
return;
|
||||
}
|
||||
if(result !== ""){
|
||||
setItemValue(0,0,"work_address_id",result.split("@")[0]);
|
||||
setItemValue(0,0,"WORKZIP",result.split("@")[1]);
|
||||
setItemValue(0,0,"WORKADD",result.split("@")[2]);
|
||||
}
|
||||
},
|
||||
(!workAddressId?"新增":"修改")+"单位地址");
|
||||
}
|
||||
//新增
|
||||
function newRecord(){
|
||||
var sUrl = "/Tenwa/Lease/Flow/Project/BusinessApplication/CustomerAddress.jsp";
|
||||
|
||||
@ -0,0 +1,65 @@
|
||||
<%@ page import="org.apache.commons.lang3.StringUtils" %>
|
||||
<%@ page contentType="text/html; charset=GBK"%>
|
||||
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><%
|
||||
|
||||
String addressId = CurPage.getParameter("addressId");
|
||||
String areaCode = "";
|
||||
System.out.println("--addressId---》》》》" + addressId);
|
||||
ASObjectModel doTemp = new ASObjectModel("HouseholdSelectAddr");
|
||||
if(StringUtils.isNotEmpty(addressId)){
|
||||
ASResultSet as2 = Sqlca.getASResultSet(new SqlObject("select address_detail as address ,itemname as area_name, cpt.ap_address_code " +
|
||||
" from rc_address_info cpt join code_library cl on cpt.ap_address_code = cl.itemno and cl.codeno = 'ZXAreaCode' where cpt.address_id = :addressId ").setParameter("addressId", addressId));
|
||||
if(as2.next()){
|
||||
doTemp.setDefaultValue("provincename", as2.getString("area_name"));
|
||||
doTemp.setDefaultValue("dressdetail", as2.getString("address"));
|
||||
areaCode = as2.getString("ap_address_code");
|
||||
doTemp.setDefaultValue("province", areaCode);
|
||||
}
|
||||
}
|
||||
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
|
||||
dwTemp.Style = "2";//freeform
|
||||
dwTemp.genHTMLObjectWindow("");
|
||||
String sButtons[][] = {
|
||||
{"true","All","Button","保存","保存所有修改","saveRecord()","","","","btn_icon_save"},
|
||||
{"true","","Button","返回","返回列表页面","parent.AsDialog.ClosePage('cancel')","","","","btn_icon_return"}
|
||||
};
|
||||
sButtonPosition = "south";
|
||||
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
||||
<script type="text/javascript">
|
||||
//省市(户籍选择)
|
||||
function selectRegionCodeZX(){
|
||||
AsDialog.PopView("/Common/ToolsA/AreaVFrame.jsp","sourceForm=zx&AreaCode=<%=areaCode%>","dialogWidth=850px;dialogHeight=450px;center:yes;status:no;statusbar:no",function(sAreaCodeInfo){
|
||||
if( sAreaCodeInfo == '_CANCEL_'){
|
||||
return;
|
||||
}
|
||||
//增加清空功能的判断
|
||||
if( sAreaCodeInfo == '_CLEAR_'){
|
||||
setItemValue(0,0,"provincename",'');
|
||||
return;
|
||||
}
|
||||
if(sAreaCodeInfo !== ""){
|
||||
setItemValue(0,0,"province",sAreaCodeInfo.split("@")[0]);
|
||||
setItemValue(0,0,"provincename",sAreaCodeInfo.split("@")[1]);
|
||||
}
|
||||
},'选择户籍行政区划');
|
||||
}
|
||||
function saveRecord(){
|
||||
if(!iV_all("0")) return;//先检查填写完整性
|
||||
let province = getItemValue(0,getRow(0),"province");
|
||||
let provinceName = getItemValue(0,getRow(0),"provincename");
|
||||
let dressDetail = getItemValue(0,getRow(0),"dressdetail");
|
||||
var sReturnInfo = RunJavaMethodTrans("com.ample.esb.common.address.PersonAddressController","saveOrUpdate",
|
||||
"id="+"<%=addressId%>"+",provinceName="+provinceName+",dressDetail="+dressDetail+",province="+province);
|
||||
if(sReturnInfo == ''){
|
||||
alert("保存地址异常!")
|
||||
return;
|
||||
}
|
||||
if(sReturnInfo.split("@")[0] == "false"){
|
||||
alert("保存地址异常!")
|
||||
return;
|
||||
}
|
||||
let returnVal = sReturnInfo.split("@")[1] +'@'+ getItemValue(0,getRow(0),"province")+'@'+getItemValue(0,getRow(0),"provincename")+getItemValue(0,getRow(0),"dressdetail");
|
||||
parent.AsDialog.ClosePage(returnVal);
|
||||
}
|
||||
</script>
|
||||
<%@ include file="/Frame/resources/include/include_end.jspf"%>
|
||||
@ -1,5 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<jbo>
|
||||
<package name="jbo.com.tenwa.entity.comm.worktip" >
|
||||
<class name="WORKTIP_CONFIG" label="" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="标识" type="STRING" length="32"/>
|
||||
<attribute name="tipInfo" label="提示标题" type="STRING" length="500"/>
|
||||
<attribute name="runnertype" label="执行类型" type="STRING" length="200"/>
|
||||
<attribute name="userparam" label="当用户字段" type="STRING" length="100"/>
|
||||
<attribute name="runner" label="执行脚本" type="STRING" length="2000"/>
|
||||
<attribute name="jsaction" label="双击事件" type="STRING" length="100"/>
|
||||
<attribute name="tipColumn" label="提示列和宽度" type="STRING" length="300"/>
|
||||
<attribute name="InputUserID" label="登记人" type="STRING" length="32"/>
|
||||
<attribute name="InputOrgID" label="登记部门" type="STRING" length="32"/>
|
||||
<attribute name="InputTime" label="登记时间" type="STRING" length="32"/>
|
||||
<attribute name="UpdateUserID" label="更新人" type="STRING" length="32"/>
|
||||
<attribute name="UpdateOrgID" label="更新部门" type="STRING" length="32"/>
|
||||
<attribute name="UpdateTime" label="更新时间" type="STRING" length="32"/>
|
||||
<attribute name="tipStatus" label="是否有效" type="STRING" length="32"/>
|
||||
<attribute name="remark" label="备注" type="STRING" length="2000"/>
|
||||
<attribute name="tipnumber" label="提示条数" type="STRING" length="3"/>
|
||||
<attribute name="sortno" label="排序号" type="STRING" length="32"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="worktip_config" />
|
||||
<property name="createKey" value="true" />
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
</package>
|
||||
<package name="jbo.app.tenwa.customer" >
|
||||
<class name="LB_CARD_SIGN_STATUS_HIS" label="账款签约状态历史表" keyAttributes="id">
|
||||
<attributes>
|
||||
|
||||
@ -699,5 +699,63 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
<class name="RC_LIBRARY" label="北财风控中台对接码表对照关系" describe="北财风控中台对接码表对照关系" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="唯一标识" type="INTEGER" length="64" />
|
||||
<attribute name="library_no" label="字典项编号" type="STRING" length="32" />
|
||||
<attribute name="library_value" label="字典项描述" type="STRING" length="32"/>
|
||||
<attribute name="ap_item_no" label="安鹏标签编号" type="STRING" length="32"/>
|
||||
<attribute name="ap_item_value" label="安鹏标签描述" type="STRING" length="32" />
|
||||
<attribute name="bc_item_no" label="北财标签编号" type="STRING" length="32"/>
|
||||
<attribute name="bc_item_value" label="北财标签描述" type="STRING" length="32"/>
|
||||
<attribute name="operate_type" label="操作类型" type="STRING" length="32"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="rc_library"/>
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
<class name="RC_ADDRESS_LIBRARY" label="风控中台对接地址字典表" describe="风控中台对接地址字典表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="唯一标识" type="STRING" length="32" />
|
||||
<attribute name="address_code" label="地址编码" type="STRING" length="32" />
|
||||
<attribute name="address_value" label="地址描述" type="STRING" length="255"/>
|
||||
<attribute name="parent_address_code" label="上级地址编码" type="STRING" length="32"/>
|
||||
<attribute name="parent_address_value" label="上级地址描述" type="STRING" length="255" />
|
||||
<attribute name="address_code_level" label="地址级别" type="STRING" length="32"/>
|
||||
<attribute name="grant_address_code" label="上上级地址编码" type="STRING" length="32"/>
|
||||
<attribute name="grant_address_value" label="上上级地址描述" type="STRING" length="32"/>
|
||||
<attribute name="ap_library_code" label="地址编码" type="STRING" length="32"/>
|
||||
<attribute name="ap_address_code" label="地址编码" type="STRING" length="32"/>
|
||||
<attribute name="ap_address_value" label="地址描述" type="STRING" length="500"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="rc_address_library"/>
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
<class name="RC_ADDRESS_INFO" label="用户地址信息表" describe="用户地址信息表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="唯一标识" type="STRING" length="32" />
|
||||
<attribute name="address_id" label="唯一标识" type="STRING" length="32" />
|
||||
<attribute name="province_code" label="省编码" type="STRING" length="32" />
|
||||
<attribute name="province_value" label="省描述" type="STRING" length="32"/>
|
||||
<attribute name="city_code" label="市编码" type="STRING" length="32"/>
|
||||
<attribute name="city_value" label="市描述" type="STRING" length="255"/>
|
||||
<attribute name="district_code" label="区县编码" type="STRING" length="32"/>
|
||||
<attribute name="district_value" label="区县编码" type="STRING" length="255"/>
|
||||
<attribute name="address_detail" label="详细地址" type="STRING" length="255"/>
|
||||
<attribute name="full_address" label="全量地址" type="STRING" length="500"/>
|
||||
<attribute name="ap_address_code" label="征信地址编码" type="STRING" length="32"/>
|
||||
<attribute name="ap_address_value" label="征信地址描述" type="STRING" length="255"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="rc_address_info"/>
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
</package>
|
||||
</jbo>
|
||||
@ -1,4 +1,4 @@
|
||||
org.quartz.dataSource.zhulhDS.URL=jdbc:mysql://47.93.34.101:10323/apzl?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=GBK&autoReconnectForPools=true&autoReconnect=true&useSSL=false
|
||||
org.quartz.dataSource.zhulhDS.URL=jdbc:mysql://60.205.189.63:3306/apzl?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=GBK&autoReconnectForPools=true&autoReconnect=true&useSSL=false
|
||||
org.quartz.dataSource.zhulhDS.user=338A48E135315FDBC2DF24EB080903D7
|
||||
org.quartz.dataSource.zhulhDS.key=431DC9744DEF477868F97C4842F87AB3
|
||||
org.quartz.dataSource.zhulhDS.driver=com.mysql.jdbc.Driver
|
||||
|
||||
@ -0,0 +1,96 @@
|
||||
package com.ample.esb.common.address;
|
||||
|
||||
import com.amarsoft.are.jbo.*;
|
||||
import com.tenwa.reckon.util.UUIDUtil;
|
||||
import jbo.oti.RC_ADDRESS_INFO;
|
||||
import jbo.oti.RC_ADDRESS_LIBRARY;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
public class PersonAddressController {
|
||||
|
||||
private String id="";
|
||||
private String province="";
|
||||
private String provinceName="";
|
||||
private String dressDetail="";
|
||||
|
||||
public String getProvince() {
|
||||
return province;
|
||||
}
|
||||
|
||||
public void setProvince(String province) {
|
||||
this.province = province;
|
||||
}
|
||||
|
||||
public String getProvinceName() {
|
||||
return provinceName;
|
||||
}
|
||||
|
||||
public void setProvinceName(String provinceName) {
|
||||
this.provinceName = provinceName;
|
||||
}
|
||||
|
||||
public String getDressDetail() {
|
||||
return dressDetail;
|
||||
}
|
||||
|
||||
public void setDressDetail(String dressDetail) {
|
||||
this.dressDetail = dressDetail;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 新增或更新地址
|
||||
* @param tx
|
||||
* @return
|
||||
* */
|
||||
public String saveOrUpdate(JBOTransaction tx)throws Exception {
|
||||
BizObjectManager rcAddressInfo = JBOFactory.getBizObjectManager(RC_ADDRESS_INFO.CLASS_NAME,tx);
|
||||
BizObjectManager rcAddressLibrary = JBOFactory.getBizObjectManager(RC_ADDRESS_LIBRARY.CLASS_NAME,tx);
|
||||
// : 2023-8-17 根据 province 查询 RC_ADDRESS_LIBRARY 表
|
||||
BizObject rcAddressLibraryBizObject = rcAddressLibrary.createQuery("ap_library_code='ZXAreaCode' and ap_address_code=:apAddressCode ")
|
||||
.setParameter("apAddressCode", province).getSingleResult(true);
|
||||
if(null == rcAddressLibraryBizObject){
|
||||
return "false@系统异常";
|
||||
}
|
||||
BizObject rcAddressInfoBizObject = rcAddressInfo.newObject();
|
||||
// : 2023-8-17 判断是新增还是修改
|
||||
if(StringUtils.isNotEmpty(id)){
|
||||
rcAddressInfoBizObject = rcAddressInfo.createQuery("address_id=:id").setParameter("id", id).getSingleResult(true);
|
||||
}else {
|
||||
id = UUIDUtil.getUUID();
|
||||
rcAddressInfoBizObject.setAttributeValue("address_id", id);
|
||||
}
|
||||
makeRcAddressInfoByLibrary(rcAddressLibraryBizObject, rcAddressInfoBizObject);
|
||||
rcAddressInfo.saveObject(rcAddressInfoBizObject);
|
||||
// : 2023-8-17 返回id值
|
||||
return "true@"+id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实体转换
|
||||
* @param rcAddressLibraryBizObject
|
||||
* @param rcAddressInfoBizObject
|
||||
*/
|
||||
private void makeRcAddressInfoByLibrary(BizObject rcAddressLibraryBizObject, BizObject rcAddressInfoBizObject) throws JBOException {
|
||||
rcAddressInfoBizObject.setAttributeValue("ap_address_value", rcAddressLibraryBizObject.getAttribute("ap_address_value").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("ap_address_code", rcAddressLibraryBizObject.getAttribute("ap_address_code").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("full_address", provinceName + dressDetail);
|
||||
rcAddressInfoBizObject.setAttributeValue("address_detail", dressDetail);
|
||||
rcAddressInfoBizObject.setAttributeValue("district_value", rcAddressLibraryBizObject.getAttribute("address_value").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("district_code", rcAddressLibraryBizObject.getAttribute("address_code").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("city_value", rcAddressLibraryBizObject.getAttribute("parent_address_value").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("city_code", rcAddressLibraryBizObject.getAttribute("parent_address_code").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("province_value", rcAddressLibraryBizObject.getAttribute("grant_address_value").toString());
|
||||
rcAddressInfoBizObject.setAttributeValue("province_code", rcAddressLibraryBizObject.getAttribute("grant_address_code").toString());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@ -67,22 +67,22 @@ public interface CUSTOMER_FAMILY{
|
||||
/**
|
||||
* 共同申请人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String educationLevel = "education_level";
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 共同申请人单位地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String workAddress = "work_address";
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 共同申请人居住地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String liveAddress = "live_address";
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 共同申请人户籍地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String idAddress = "id_address";
|
||||
public static final String id_address = "id_address";
|
||||
|
||||
/**
|
||||
* 共同申请人企业性质 STRING(32)<br>
|
||||
@ -92,12 +92,12 @@ public interface CUSTOMER_FAMILY{
|
||||
/**
|
||||
* 共同申请人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industryType = "industry_type";
|
||||
public static final String industry_type = "industry_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String careerType = "career_type";
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职位 STRING(32)<br>
|
||||
@ -107,12 +107,12 @@ public interface CUSTOMER_FAMILY{
|
||||
/**
|
||||
* 共同申请人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyIncome = "monthly_income";
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 共同申请人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-共同申请人新增字段
|
||||
/**
|
||||
* 标识 STRING(32)<br>
|
||||
|
||||
@ -14,7 +14,6 @@ public interface CUSTOMER_FAMILY_HIS{
|
||||
*/
|
||||
public static final String CLASS_NAME = "jbo.app.tenwa.customer.CUSTOMER_FAMILY_HIS";
|
||||
|
||||
|
||||
// 20230817 北财风控中台对接-共同申请人新增字段
|
||||
|
||||
/**
|
||||
@ -67,22 +66,22 @@ public interface CUSTOMER_FAMILY_HIS{
|
||||
/**
|
||||
* 共同申请人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String educationLevel = "education_level";
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 共同申请人单位地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String workAddress = "work_address";
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 共同申请人居住地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String liveAddress = "live_address";
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 共同申请人户籍地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String idAddress = "id_address";
|
||||
public static final String id_address = "id_address";
|
||||
|
||||
/**
|
||||
* 共同申请人企业性质 STRING(32)<br>
|
||||
@ -92,12 +91,12 @@ public interface CUSTOMER_FAMILY_HIS{
|
||||
/**
|
||||
* 共同申请人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industryType = "industry_type";
|
||||
public static final String industry_type = "industry_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String careerType = "career_type";
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职位 STRING(32)<br>
|
||||
@ -107,12 +106,12 @@ public interface CUSTOMER_FAMILY_HIS{
|
||||
/**
|
||||
* 共同申请人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyIncome = "monthly_income";
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 共同申请人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-共同申请人新增字段
|
||||
|
||||
/**
|
||||
|
||||
@ -67,22 +67,22 @@ public interface CUSTOMER_FAMILY_TEMP{
|
||||
/**
|
||||
* 共同申请人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String educationLevel = "education_level";
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 共同申请人单位地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String workAddress = "work_address";
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 共同申请人居住地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String liveAddress = "live_address";
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 共同申请人户籍地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String idAddress = "id_address";
|
||||
public static final String id_address = "id_address";
|
||||
|
||||
/**
|
||||
* 共同申请人企业性质 STRING(32)<br>
|
||||
@ -92,12 +92,12 @@ public interface CUSTOMER_FAMILY_TEMP{
|
||||
/**
|
||||
* 共同申请人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industryType = "industry_type";
|
||||
public static final String industry_type = "industry_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String careerType = "career_type";
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职位 STRING(32)<br>
|
||||
@ -107,12 +107,12 @@ public interface CUSTOMER_FAMILY_TEMP{
|
||||
/**
|
||||
* 共同申请人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyIncome = "monthly_income";
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 共同申请人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-共同申请人新增字段
|
||||
/**
|
||||
* 标识 STRING(32)<br>
|
||||
|
||||
@ -24,27 +24,27 @@ public interface CUSTOMER_PERSON{
|
||||
/**
|
||||
* 承租人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String workAddressId = "work_address_id";
|
||||
public static final String work_address_id = "work_address_id";
|
||||
|
||||
/**
|
||||
* 承租人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
|
||||
/**
|
||||
* 承租人过去曾运营车辆类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateCarType = "pre_operate_car_type";
|
||||
public static final String pre_operate_car_type = "pre_operate_car_type";
|
||||
|
||||
/**
|
||||
* 承租人过去曾运营车辆车牌号 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateCarNo = "pre_operate_car_no";
|
||||
public static final String pre_operate_car_no = "pre_operate_car_no";
|
||||
|
||||
/**
|
||||
* 承租人从业时间 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateYears = "pre_operate_years";
|
||||
public static final String pre_operate_years = "pre_operate_years";
|
||||
|
||||
// 20230809 北财风控中台对接-承租人新增字段
|
||||
|
||||
|
||||
@ -20,31 +20,30 @@ public interface CUSTOMER_PERSON_HIS{
|
||||
*/
|
||||
public static final String idexpiry = "idexpiry";
|
||||
|
||||
|
||||
/**
|
||||
* 承租人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String workAddressId = "work_address_id";
|
||||
public static final String work_address_id = "work_address_id";
|
||||
|
||||
/**
|
||||
* 承租人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
|
||||
/**
|
||||
* 承租人过去曾运营车辆类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateCarType = "pre_operate_car_type";
|
||||
public static final String pre_operate_car_type = "pre_operate_car_type";
|
||||
|
||||
/**
|
||||
* 承租人过去曾运营车辆车牌号 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateCarNo = "pre_operate_car_no";
|
||||
public static final String pre_operate_car_no = "pre_operate_car_no";
|
||||
|
||||
/**
|
||||
* 承租人从业时间 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateYears = "pre_operate_years";
|
||||
public static final String pre_operate_years = "pre_operate_years";
|
||||
|
||||
// 20230809 北财风控中台对接-承租人新增字段
|
||||
|
||||
|
||||
@ -24,27 +24,27 @@ public interface CUSTOMER_PERSON_TEMP{
|
||||
/**
|
||||
* 承租人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String workAddressId = "work_address_id";
|
||||
public static final String work_address_id = "work_address_id";
|
||||
|
||||
/**
|
||||
* 承租人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
|
||||
/**
|
||||
* 承租人过去曾运营车辆类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateCarType = "pre_operate_car_type";
|
||||
public static final String pre_operate_car_type = "pre_operate_car_type";
|
||||
|
||||
/**
|
||||
* 承租人过去曾运营车辆车牌号 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateCarNo = "pre_operate_car_no";
|
||||
public static final String pre_operate_car_no = "pre_operate_car_no";
|
||||
|
||||
/**
|
||||
* 承租人从业时间 STRING(32)<br>
|
||||
*/
|
||||
public static final String preOperateYears = "pre_operate_years";
|
||||
public static final String pre_operate_years = "pre_operate_years";
|
||||
|
||||
// 20230809 北财风控中台对接-承租人新增字段
|
||||
|
||||
|
||||
@ -14,67 +14,6 @@ public interface LB_GUARANTEE_UNIT{
|
||||
*/
|
||||
public static final String CLASS_NAME = "jbo.com.tenwa.lease.comm.LB_GUARANTEE_UNIT";
|
||||
|
||||
// 20230809 北财风控中台对接-担保人新增字段
|
||||
/**
|
||||
* 担保人身份证有效期 STRING(32)<br>
|
||||
*/
|
||||
public static final String idexpiry = "idexpiry";
|
||||
|
||||
/**
|
||||
* 担保人民族 STRING(32)<br>
|
||||
*/
|
||||
public static final String nation = "nation";
|
||||
|
||||
/**
|
||||
* 担保人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String educationLevel = "education_level";
|
||||
|
||||
/**
|
||||
* 担保人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String workAddress = "work_address";
|
||||
|
||||
/**
|
||||
* 担保人居住地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String liveAddress = "live_address";
|
||||
|
||||
/**
|
||||
* 担保人户籍地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String idAddress = "id_address";
|
||||
|
||||
/**
|
||||
* 担保人企业性质 STRING(32)<br>
|
||||
*/
|
||||
public static final String enterprise_nature = "enterprise_nature";
|
||||
|
||||
/**
|
||||
* 担保人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industryType = "industry_type";
|
||||
|
||||
/**
|
||||
* 担保人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String careerType = "career_type";
|
||||
|
||||
/**
|
||||
* 担保人职位 STRING(32)<br>
|
||||
*/
|
||||
public static final String position = "position";
|
||||
|
||||
/**
|
||||
* 担保人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyIncome = "monthly_income";
|
||||
|
||||
/**
|
||||
* 担保人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-担保人新增字段
|
||||
// 20230817 北财风控中台对接-担保人新增字段
|
||||
|
||||
/**
|
||||
@ -113,6 +52,67 @@ public interface LB_GUARANTEE_UNIT{
|
||||
public static final String id_address_id = "id_address_id";
|
||||
|
||||
// 20230817 北财风控中台对接-担保人新增字段
|
||||
// 20230809 北财风控中台对接-担保人新增字段
|
||||
/**
|
||||
* 担保人身份证有效期 STRING(32)<br>
|
||||
*/
|
||||
public static final String idexpiry = "idexpiry";
|
||||
|
||||
/**
|
||||
* 担保人民族 STRING(32)<br>
|
||||
*/
|
||||
public static final String nation = "nation";
|
||||
|
||||
/**
|
||||
* 担保人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 担保人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 担保人居住地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 担保人户籍地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String id_address = "id_address";
|
||||
|
||||
/**
|
||||
* 担保人企业性质 STRING(32)<br>
|
||||
*/
|
||||
public static final String enterprise_nature = "enterprise_nature";
|
||||
|
||||
/**
|
||||
* 担保人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industry_type = "industry_type";
|
||||
|
||||
/**
|
||||
* 担保人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 担保人职位 STRING(32)<br>
|
||||
*/
|
||||
public static final String position = "position";
|
||||
|
||||
/**
|
||||
* 担保人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 担保人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-担保人新增字段
|
||||
/**
|
||||
* 标识 STRING(32)<br>
|
||||
*/
|
||||
|
||||
@ -66,22 +66,22 @@ public interface LB_GUARANTEE_UNIT_HIS{
|
||||
/**
|
||||
* 担保人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String educationLevel = "education_level";
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 担保人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String workAddress = "work_address";
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 担保人居住地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String liveAddress = "live_address";
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 担保人户籍地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String idAddress = "id_address";
|
||||
public static final String id_address = "id_address";
|
||||
|
||||
/**
|
||||
* 担保人企业性质 STRING(32)<br>
|
||||
@ -91,12 +91,12 @@ public interface LB_GUARANTEE_UNIT_HIS{
|
||||
/**
|
||||
* 担保人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industryType = "industry_type";
|
||||
public static final String industry_type = "industry_type";
|
||||
|
||||
/**
|
||||
* 担保人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String careerType = "career_type";
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 担保人职位 STRING(32)<br>
|
||||
@ -106,12 +106,12 @@ public interface LB_GUARANTEE_UNIT_HIS{
|
||||
/**
|
||||
* 担保人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyIncome = "monthly_income";
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 担保人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-担保人新增字段
|
||||
|
||||
/**
|
||||
|
||||
@ -65,22 +65,22 @@ public interface LB_GUARANTEE_UNIT_TEMP{
|
||||
/**
|
||||
* 担保人最高学历 STRING(32)<br>
|
||||
*/
|
||||
public static final String educationLevel = "education_level";
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 担保人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String workAddress = "work_address";
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 担保人居住地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String liveAddress = "live_address";
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 担保人户籍地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String idAddress = "id_address";
|
||||
public static final String id_address = "id_address";
|
||||
|
||||
/**
|
||||
* 担保人企业性质 STRING(32)<br>
|
||||
@ -90,12 +90,12 @@ public interface LB_GUARANTEE_UNIT_TEMP{
|
||||
/**
|
||||
* 担保人行业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String industryType = "industry_type";
|
||||
public static final String industry_type = "industry_type";
|
||||
|
||||
/**
|
||||
* 担保人职业类型 STRING(32)<br>
|
||||
*/
|
||||
public static final String careerType = "career_type";
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 担保人职位 STRING(32)<br>
|
||||
@ -105,12 +105,12 @@ public interface LB_GUARANTEE_UNIT_TEMP{
|
||||
/**
|
||||
* 担保人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyIncome = "monthly_income";
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 担保人月支出 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthlyExpenses = "monthly_expenses";
|
||||
public static final String monthly_expenses = "monthly_expenses";
|
||||
// 20230809 北财风控中台对接-担保人新增字段
|
||||
|
||||
/**
|
||||
|
||||
67
src_jbo/jbo/oti/RC_ADDRESS_INFO.java
Normal file
67
src_jbo/jbo/oti/RC_ADDRESS_INFO.java
Normal file
@ -0,0 +1,67 @@
|
||||
package jbo.oti;
|
||||
import java.lang.String;
|
||||
|
||||
/**
|
||||
* 字典信息表 rc_address_library
|
||||
*/
|
||||
public interface RC_ADDRESS_INFO {
|
||||
|
||||
/**
|
||||
* 业务类型<br><br>
|
||||
* 代表本类映射的BizObjectClass
|
||||
*/
|
||||
public static final String CLASS_NAME = "jbo.oti.RC_ADDRESS_INFO";
|
||||
/**
|
||||
* id`
|
||||
* STRING(20)<br>
|
||||
*/
|
||||
public static final String id = "id";
|
||||
|
||||
public static final String address_id = "address_id";
|
||||
/**
|
||||
* 省编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String province_code = "province_code";
|
||||
/**
|
||||
* 省描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String province_value = "province_value";
|
||||
/**
|
||||
* 市编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String city_code = "city_code";
|
||||
/**
|
||||
* 市描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String city_value = "city_value";
|
||||
/**
|
||||
* 区县编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String district_code = "district_code";
|
||||
|
||||
/**
|
||||
* 区县描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String district_value = "district_value";
|
||||
|
||||
/**
|
||||
* 详细地址 STRING(20)<br>
|
||||
*/
|
||||
public static final String address_detail = "address_detail";
|
||||
|
||||
/**
|
||||
* 全量地址 STRING(20)<br>
|
||||
*/
|
||||
public static final String full_address = "full_address";
|
||||
|
||||
/**
|
||||
* 征信地址编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_address_code = "ap_address_code";
|
||||
|
||||
/**
|
||||
* 征信地址描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_address_value = "ap_address_value";
|
||||
|
||||
}
|
||||
62
src_jbo/jbo/oti/RC_ADDRESS_LIBRARY.java
Normal file
62
src_jbo/jbo/oti/RC_ADDRESS_LIBRARY.java
Normal file
@ -0,0 +1,62 @@
|
||||
package jbo.oti;
|
||||
|
||||
/**
|
||||
* 字典信息表 rc_address_library
|
||||
*/
|
||||
public interface RC_ADDRESS_LIBRARY {
|
||||
|
||||
/**
|
||||
* 业务类型<br><br>
|
||||
* 代表本类映射的BizObjectClass
|
||||
*/
|
||||
public static final String CLASS_NAME = "jbo.oti.RC_ADDRESS_LIBRARY";
|
||||
/**
|
||||
* id`
|
||||
* STRING(20)<br>
|
||||
*/
|
||||
public static final String id = "id";
|
||||
/**
|
||||
* 地址编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String address_code = "address_code";
|
||||
/**
|
||||
* 地址描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String address_value = "address_value";
|
||||
/**
|
||||
* 上级地址编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String parent_address_code = "parent_address_code";
|
||||
/**
|
||||
* 上级地址描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String parent_address_value = "parent_address_value";
|
||||
/**
|
||||
* 上上级地址编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String grant_address_code = "grant_address_code";
|
||||
|
||||
/**
|
||||
* 上上级地址描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String grant_address_value = "grant_address_value";
|
||||
|
||||
/**
|
||||
* 地址级别 STRING(20)<br>
|
||||
*/
|
||||
public static final String address_code_level = "address_code_level";
|
||||
|
||||
/**
|
||||
* 地址编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_library_code = "ap_library_code";
|
||||
/**
|
||||
* 地址编码 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_address_code = "ap_address_code";
|
||||
/**
|
||||
* 地址描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_address_value = "ap_address_value";
|
||||
|
||||
}
|
||||
50
src_jbo/jbo/oti/RC_LIBRARY.java
Normal file
50
src_jbo/jbo/oti/RC_LIBRARY.java
Normal file
@ -0,0 +1,50 @@
|
||||
package jbo.oti;
|
||||
|
||||
/**
|
||||
* 字典信息表 rc_library
|
||||
*/
|
||||
public interface RC_LIBRARY {
|
||||
|
||||
/**
|
||||
* 业务类型<br><br>
|
||||
* 代表本类映射的BizObjectClass
|
||||
*/
|
||||
public static final String CLASS_NAME = "jbo.oti.RC_LIBRARY";
|
||||
/**
|
||||
* id`
|
||||
* STRING(20)<br>
|
||||
*/
|
||||
public static final String id = "id";
|
||||
/**
|
||||
* 字典项编号 STRING(20)<br>
|
||||
*/
|
||||
public static final String library_no = "library_no";
|
||||
/**
|
||||
* 字典项描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String library_value = "library_value";
|
||||
/**
|
||||
* 安鹏标签编号 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_item_no = "ap_item_no";
|
||||
/**
|
||||
* 安鹏标签描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String ap_item_value = "ap_item_value";
|
||||
/**
|
||||
* 北财标签编号 STRING(20)<br>
|
||||
*/
|
||||
public static final String bc_item_no = "bc_item_no";
|
||||
|
||||
/**
|
||||
* 北财标签描述 STRING(20)<br>
|
||||
*/
|
||||
public static final String bc_item_value = "bc_item_value";
|
||||
|
||||
/**
|
||||
* 操作类型 STRING(20)<br>
|
||||
*/
|
||||
public static final String operate_type = "operate_type";
|
||||
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user