Agent61.js 1.27 KB
Newer Older
a  
s_guodong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
export default [
{
path:"0",
name:"Financial Institution Identification",
label:"金融机构信息",
tag:"finInstnId",
status:"M",
children: [
{
path:"0.0",
name:"BICFI",
label:"行号",
tag:"bicfi",
type:"TextInput#[A-Z0-9]{4,4}[A-Z]{2,2}[A-Z0-9]{2,2}([A-Z0-9]{3,3}){0,1}",
status:"O",
maxLength:"11",
},
{
path:"0.1",
name:"Clearing System Member Identification",
label:"清算系统成员信息",
tag:"clrSysMmbId",
status:"O",
children: [
{
path:"0.1.0",
name:"Clearing System Identification",
label:"清算系统",
tag:"clrSysId",
type:"Choice",
status:"M",
children: [
{
path:"0.1.0.0",
name:"Code",
label:"系统代码",
tag:"cd",
type:"Select#externalClearingSystemIdentificationCode",
status:"M",
},
],
},
{
path:"0.1.1",
name:"Member Identification",
label:"标识号",
tag:"mmbId",
type:"TextInput#[0-9a-zA-Z/\-\?:\(\)\.,'\+ ]+",
status:"M",
maxLength:"28",
},
],
},
{
path:"0.2",
name:"LEI",
label:"法人标识号",
tag:"lei",
type:"TextInput#[A-Z0-9]{18,18}[0-9]{2,2}",
status:"O",
maxLength:"20",
},
{
path:"0.3",
name:"Name",
label:"机构名称",
tag:"nm",
type:"TextInput#[0-9a-zA-Z/\-\?:\(\)\.,'\+ !#$%&\*=^_`\{\|\}~\";<>@\[\\\]]+",
status:"O",
maxLength:"140",
},
{
path:"0.4",
name:"Postal Address",
label:"地址信息",
tag:"pstlAdr",
type:"Address241",
status:"O",
},
],
},

]