Commit 77990891 by fukai

支持elcs拟报

parent b00c8e78
import {fillNodeValue} from './MesgValidator'
function fixAndDisable(node,value)
{
if(!node)
return
fillNodeValue(node,value)
//node.value = value
node.enable= false
}
const RMYH_0000 = '0000'
export function fixTreeValue(mty,directMap)
{
for(let uid in directMap)
{
let node = directMap[uid]
if(!node.isLeaf)
continue
fixNodeValue(mty,node)
}
}
function fixNodeValue(mty,node)
{
let uid = node.path
if(uid == 'GrpHdr.InstgAgt.MmbId'){
fixAndDisable(node,PSBC_ELC_CODE) //直参填总行
}
else if(uid == 'GrpHdr.InstgPty.InstgDrctPty')
{
fixAndDisable(node,PSBC_ELC_CODE)//直参填总行
}
else if(uid == 'GrpHdr.InstdAgt.MmbId'
|| uid == 'GrpHdr.InstdAgt.BrnchId.Id'
)
{
let fourZeroMty =[
'elcs.101.001.01','elcs.103.001.01','elcs.107.001.01',
'elcs.211.001.01','elcs.223.001.01','elcs.902.001.01',
'elcs.721.001.01'
]
if(fourZeroMty.find(item=>item==mty))
fixAndDisable(node,RMYH_0000)
}
else if(uid == 'PtcptBk')
{
if(mty =='elcs.902.001.01')
fixAndDisable(node,PSBC_ELC_CODE)
}
else if(uid == 'GrpHdr.SysCd')
{
if(mty.startsWith('elcs'))
fixAndDisable(node,'ELCS')
else if(mty.startsWith('ccms'))
fixAndDisable(node,'CCMS')
if(mty == 'ccms.303.001.02')
fixAndDisable(node,'ELCS')
}
else if(uid.startsWith('LCInfo.ApplBkInfo'))
{
if(mty == 'elcs.101.001.01' || mty == 'elcs.103.001.01')//101 103申请人 代理开证才允许填
{
node.enable=false
}
}
else if(uid.startsWith('LCInfo.ApplBkInfo'))
{
if(mty == 'elcs.101.001.01' || mty == 'elcs.103.001.01')//101 103申请人 代理开证才允许填
{
node.enable=false
}
}
else if(uid.startsWith('LCInfo.TraNm.Instal'))
{
if(mty == 'elcs.101.001.01' || mty == 'elcs.103.001.01')//101 103 选择分装允许标志才允许填
{
node.enable=false
}
}
else if(uid == 'LCInfo.Hon.ExpOfPmt' ||
uid == 'LCInfo.Hon.UsncLCPmtInstr'
)
{
if(mty == 'elcs.101.001.01') //101 103远期付款期限默认不能输入
node.enable = false
if(mty == 'elcs.103.001.01' &&
uid == 'LCInfo.Hon.UsncLCPmtInstr')
node.enable=false
}
else if(
uid == 'LCInfo.NegoBkInfo.BkCd'||
uid == 'LCInfo.NegoBkInfo.BkNm'||
uid == 'LCInfo.NegoBkInfo.Adr'
)
{
if(mty == 'elcs.101.001.01' || mty =='elcs.103.001.01') //议付行可议付时才允许填写
node.enable =false
}
else if(uid == 'LCInfo.IssBkInfo.BkCd')
{
if(mty == 'elcs.101.001.01' || mty == 'elcs.103.001.01')
{
//开证行因默认填写当前柜员所在分支机构人行号
fixAndDisable(node,PTY_CODE)
}
}
else if(uid == 'LCInfo.IssBkInfo.BkNm')
{
if(mty == 'elcs.101.001.01' || mty == 'elcs.103.001.01')
{
//开证行因默认填写当前柜员所在分支机构人行机构名称
fixAndDisable(node,PTY_NAME)
}
}
else if(uid == 'OrgnlGrpHdr.OrgnlMsgTp')
{
if(mty == 'elcs.104.001.01')
fixAndDisable(node,'elcs.103.001.01')
else if(mty == 'elcs.222.001.01')
fixAndDisable(node,'elcs.221.001.01')
}
else if(uid == 'PresnInfo.RcvBk.BkCd' || uid == 'LCId.IssBkCd')
{
if(mty == 'elcs.201.001.01' || mty == 'elcs.202.001.01')
node.enable = false
}
else if(uid == 'PresnInfo.DocsInfo.Hon.UsncLCPmtInstr')
{
if(mty == 'elcs.201.001.01') //201付款指示默认禁止输入
node.enable = false
}
else if(uid == 'PresnId.PresnBkCode')
{
if(mty == 'elcs.203.001.01' || mty == 'elcs.204.001.01'
|| mty=='elcs.212.001.01' || mty =='elcs.213.001.01'
)
node.enable=false
}
else if(uid == 'PmtInfo.CdtrAgt.BkCd')
{
if(mty == 'elcs.221.001.01')
node.enable = false
}
else if(uid == 'PmtInfo.TraTp')
{
}
else if(uid == 'OrgnlGrpHdr.OrgnlMsgTp'){
if(mty == 'elcs.222.001.01')
{
fixAndDisable(node,'elcs.221.001.01')
}
}
else if(uid == 'BllArlConfInfo.BllArlTp')
{
if(mty == 'elcs.203.001.01')
node.enable=false
}
else if(uid == 'NegoInfo.BkCd')
{
if(mty == 'elcs.211.001.01')
node.enable=false
}
else if(uid == 'PmtRslt.InstgAgt' || uid == 'PmtRslt.MsgId')
{
if(mty == 'elcs.221.001.01')
{//221 即时转账报文发起行和即时转账报文标识号,不用填写
node.tips = '不用填写'
node.enable = false
}
}
//通用处理
if(node.type == 'AttachmentFlag(Max4Text)')
{
fixAndDisable(node,'NULL')
}
}
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"信息内容",
"status":"M",
"tag":"MsgCntt",
"tno":"1",
"type":"Max500Text"
}
],
"desp":"FreeFormatInformation",
"name":"FreeFrmtInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"操作类型",
"status":"M",
"tag":"LoginOprTp",
"tno":"1",
"type":"LoginOperationTypeCode"
}
],
"desp":"LoginInformation",
"name":"LoginInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"原报文标识号",
"status":"M",
"tag":"OrgnlMsgId",
"tno":"1",
"type":"Max35Text"
}
],
"desp":"OriginalGroupInformation",
"name":"OrgnlGrpInf",
"status":"M"
},
{
"child":[
{
"label":"操作类型",
"status":"M",
"tag":"LoginOprTp",
"tno":"1",
"type":"LoginOperationTypeCode"
},
{
"label":"系统当前日期",
"status":"M",
"tag":"CurSysDt",
"tno":"2",
"type":"ISODate"
},
{
"label":"系统当前状态",
"status":"M",
"tag":"CurSysSts",
"tno":"3",
"type":"SystemStatus(Max2Text)"
},
{
"label":"NPC处理状态",
"status":"M",
"tag":"PrcSts",
"tno":"4",
"type":"ProcessCode(Max4Text)"
},
{
"label":"业务处理码",
"status":"O",
"tag":"PrcCd",
"tno":"5",
"type":"Max8Text"
},
{
"label":"业务拒绝信息",
"status":"O",
"tag":"RjctInf",
"tno":"6",
"type":"Max105Text"
}
],
"desp":"LoginResponseInformation",
"name":"LoginRspnInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"原报文标识号",
"status":"M",
"tag":"OrgnlMsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"原发起参与机构",
"status":"M",
"tag":"OrgnlInstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"原报文类型",
"status":"M",
"tag":"OrgnlMsgTp",
"tno":"3",
"type":"Max35Text"
}
],
"desp":"原业务报文信息",
"name":"OrgnlGrpHdr",
"status":"M"
},
{
"child":[
{
"label":"业务状态",
"status":"M",
"tag":"PrcSts",
"tno":"1",
"type":"ProcessCode(Max4Text)"
},
{
"label":"业务处理码",
"status":"O",
"tag":"PrcCd",
"tno":"2",
"type":"Max8Text"
},
{
"label":"拒绝业务的参与机构行号",
"status":"O",
"tag":"PtyId",
"tno":"3",
"type":"Max14Text"
},
{
"label":"参与机构业务拒绝码",
"status":"O",
"tag":"PtyPrcCd",
"tno":"4",
"type":"RejectCode(Max4Text)"
},
{
"label":"业务拒绝信息",
"status":"O",
"tag":"RjctInf",
"tno":"5",
"type":"Max105Text"
},
{
"label":"处理日期(终态日期)",
"status":"O",
"tag":"PrcDt",
"tno":"6",
"type":"ISODate"
},
{
"label":"轧差场次",
"status":"O",
"tag":"NetgRnd",
"tno":"7",
"type":"Max2Text"
}
],
"desp":"CommonConfirmationInformation",
"name":"CmonConfInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"变更类型",
"status":"M",
"tag":"ChgTp",
"tno":"1",
"type":"ChangeCode"
}
],
"desp":"CertificateNotification Information",
"name":"CertNtfctnInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文发起人",
"status":"M",
"tag":"OrigSndr",
"tno":"1",
"type":"Max14Text"
},
{
"label":"报文发起日期",
"status":"M",
"tag":"OrigSndDt",
"tno":"2",
"type":"Max8Text"
},
{
"label":"报文类型代码",
"status":"M",
"tag":"MT",
"tno":"3",
"type":"Max20Text"
},
{
"label":"通信级标识号",
"status":"M",
"tag":"MsgId",
"tno":"4",
"type":"Max20Text"
},
{
"label":"通信级参考号",
"status":"O",
"tag":"MsgRefId",
"tno":"5",
"type":"Max20Text"
},
{
"label":"业务处理码",
"status":"M",
"tag":"PrcCd",
"tno":"6",
"type":"Max8Text"
},
{
"label":"业务拒绝信息",
"status":"O",
"tag":"RjctInf",
"tno":"7",
"type":"Max105Text"
}
],
"desp":"DiscardInformation",
"name":"DscrdInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"总记录数",
"status":"M",
"tag":"TtlNb",
"tno":"1",
"type":"Max8NumericText"
},
{
"label":"本报文记录起始序号",
"status":"M",
"tag":"StartNb",
"tno":"2",
"type":"Max8NumericText"
},
{
"label":"本报文记录截止序号",
"status":"M",
"tag":"EndNb",
"tno":"3",
"type":"Max8NumericText"
}
],
"desp":"Partition",
"name":"Prttn",
"status":"M"
},
{
"child":[
{
"label":"变更期数",
"status":"M",
"tag":"ChngNb",
"tno":"1",
"type":"Exact8NumericText"
},
{
"label":"变更记录数目",
"status":"O",
"tag":"ChngRcrdNb",
"tno":"2",
"type":"Max8NumericText"
}
],
"desp":"NumberInformation",
"name":"NbInf",
"status":"M"
},
{
"cycs":[
[
{
"child":[
{
"label":"变更类型",
"status":"M",
"tag":"ChngTp",
"tno":"1",
"type":"ChangeCode"
},
{
"label":"生效类型",
"status":"M",
"tag":"FctvTp",
"tno":"2",
"type":"EffectiveCode"
},
{
"label":"生效日期",
"status":"O",
"tag":"FctvDt",
"tno":"3",
"type":"ISODate"
},
{
"label":"失效日期",
"status":"O",
"tag":"IfctvDt",
"tno":"4",
"type":"ISODate"
}
],
"desp":"ChangeControl",
"name":"ChngCtrl",
"status":"M"
},
{
"label":"参与机构行号",
"status":"M",
"tag":"BkCd",
"tno":"2",
"type":"Max14Text"
},
{
"label":"参与机构类别",
"status":"M",
"tag":"PtcptTp",
"tno":"3",
"type":"Exact2NumericText"
},
{
"label":"行别代码",
"status":"M",
"tag":"BkCtgyCd",
"tno":"4",
"type":"Exact3NumericText"
},
{
"label":"所属直参行号",
"status":"M",
"tag":"DrctBkCd",
"tno":"5",
"type":"Max14Text"
},
{
"label":"所属法人",
"status":"M",
"tag":"LglPrsn",
"tno":"6",
"type":"Max14Text"
},
{
"label":"本行上级参与机构",
"status":"O",
"tag":"HghPtcpt",
"tno":"7",
"type":"Max70Text"
},
{
"label":"承接行行号",
"status":"O",
"tag":"BrBkCd",
"tno":"8",
"type":"Max14Text"
},
{
"label":"管辖人行行号",
"status":"O",
"tag":"ChrgBkCd",
"tno":"9",
"type":"Max14Text"
},
{
"label":"所属CCPC",
"status":"M",
"tag":"NdCd",
"tno":"10",
"type":"Exact4NumericText"
},
{
"label":"所在城市代码",
"status":"M",
"tag":"CityCd",
"tno":"11",
"type":"Max6NumericText"
},
{
"label":"参与机构全称",
"status":"M",
"tag":"PtcptNm",
"tno":"12",
"type":"Max60Text"
},
{
"label":"加入业务系统标识",
"status":"M",
"tag":"Sgn",
"tno":"13",
"type":"Exact10NumericText"
},
{
"label":"电话/电挂",
"status":"O",
"tag":"Tel",
"tno":"14",
"type":"Max50Text"
}
]
]
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文发起人",
"status":"M",
"tag":"OrigSndr",
"tno":"1",
"type":"Max14Text"
},
{
"label":"报文发起日期",
"status":"M",
"tag":"OrigSndDt",
"tno":"2",
"type":"Max8Text"
},
{
"label":"报文类型代码",
"status":"M",
"tag":"MT",
"tno":"3",
"type":"Max20Text"
},
{
"label":"通信级标识号",
"status":"M",
"tag":"MsgId",
"tno":"4",
"type":"Max20Text"
},
{
"label":"通信级参考号",
"status":"O",
"tag":"MsgRefId",
"tno":"5",
"type":"Max20Text"
},
{
"label":"处理状态",
"status":"M",
"tag":"MsgPrcCd",
"tno":"6",
"type":"Max8Text"
}
],
"desp":"ConfirmationInformation",
"name":"ConfInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文发起节点",
"status":"M",
"tag":"SndNd",
"tno":"1",
"type":"Max14Text"
},
{
"label":"发送服务器名",
"status":"M",
"tag":"SndSvcrNm",
"tno":"2",
"type":"Max20Text"
},
{
"label":"发起队列管理器名",
"status":"M",
"tag":"SndLineMgrNm",
"tno":"3",
"type":"Max48Text"
},
{
"label":"发送通道名",
"status":"M",
"tag":"SndRoadNm",
"tno":"4",
"type":"Max20Text"
},
{
"label":"发送时间",
"status":"M",
"tag":"SndDt",
"tno":"5",
"type":"Max23Text"
},
{
"label":"接收节点",
"status":"M",
"tag":"RcvNd",
"tno":"6",
"type":"Max14Text"
},
{
"label":"接收服务器名",
"status":"M",
"tag":"RcvSvcrNm",
"tno":"7",
"type":"Max20Text"
},
{
"label":"接收队列管理器",
"status":"M",
"tag":"RcvLineMgr",
"tno":"8",
"type":"Max48Text"
},
{
"label":"MBFE端探测回应报文放入的队列名",
"status":"M",
"tag":"RspnLineNm",
"tno":"9",
"type":"Max48Text"
}
],
"desp":"CheckInformation",
"name":"ChckInf",
"status":"M"
},
{
"child":[
{
"label":"发起方服务器接收状态",
"status":"M",
"tag":"SndSvcrRcvSts",
"tno":"1",
"type":"Exact1NumericText"
},
{
"label":"发起方节点管理状态",
"status":"O",
"tag":"SndNdMgmtSts",
"tno":"2",
"type":"Exact1NumericText"
},
{
"label":"接收方节点管理状态",
"status":"O",
"tag":"RcvNdMgmtSts",
"tno":"3",
"type":"Exact1NumericText"
}
],
"desp":"SendServicerManagementInformation",
"name":"SndSvcrMgmtInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"原报文发起节点",
"status":"M",
"tag":"OrigSndNd",
"tno":"1",
"type":"Max14Text"
},
{
"label":"原发送服务器名",
"status":"M",
"tag":"OrigSndSvsrNm",
"tno":"2",
"type":"Max20Text"
},
{
"label":"原发起队列管理器名",
"status":"M",
"tag":"OrigSndLineMgrNm",
"tno":"3",
"type":"Max48Text"
},
{
"label":"接收通道名(原发送通道名)",
"status":"M",
"tag":"RcvRoadNm",
"tno":"4",
"type":"Max20Text"
},
{
"label":"原请求报文发送时间",
"status":"M",
"tag":"OrigSndDt",
"tno":"5",
"type":"Max23Text"
},
{
"label":"应答节点",
"status":"M",
"tag":"RspnNd",
"tno":"6",
"type":"Max14Text"
},
{
"label":"应答服务器名",
"status":"M",
"tag":"RspnSvcrNm",
"tno":"7",
"type":"Max20Text"
},
{
"label":"应答队列管理器",
"status":"M",
"tag":"RspnLineMgr",
"tno":"8",
"type":"Max48Text"
},
{
"label":"接收端远程队列名",
"status":"M",
"tag":"RcvLineNm",
"tno":"9",
"type":"Max48Text"
}
],
"desp":"CheckResponseInformation",
"name":"ChckRspnInf",
"status":"M"
},
{
"child":[
{
"label":"应答方本地队列名",
"status":"M",
"tag":"RspnLclLineNm",
"tno":"1",
"type":"Max48Text"
},
{
"label":"负载系数",
"status":"M",
"tag":"LdFctr",
"tno":"2",
"type":"Max16Text"
}
],
"desp":"LoadFactorInformation",
"name":"LdFctrInf",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"通知行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"通知行业务编号",
"status":"M",
"tag":"Ref",
"tno":"2",
"type":"Max20Text"
},
{
"label":"开证日期",
"status":"M",
"tag":"DtOfIss",
"tno":"3",
"type":"ISODate"
},
{
"label":"通知状态",
"status":"M",
"tag":"NtceStat",
"tno":"4",
"type":"NoticeStateCode(Max4Text)"
},
{
"label":"理由",
"status":"O",
"tag":"Rsn",
"tno":"5",
"type":"Max60Text"
}
],
"desp":"拒绝通知信息",
"name":"AdvsRjctInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"4",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"原报文标识号",
"status":"M",
"tag":"OrgnlMsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"原发起参与机构",
"status":"M",
"tag":"OrgnlInstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"原报文类型",
"status":"M",
"tag":"OrgnlMsgTp",
"tno":"3",
"type":"Max35Text"
}
],
"desp":"OriginalGroupHeader",
"name":"OrgnlGrpHdr",
"status":"M"
},
{
"child":[
{
"label":"通知行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"通知行业务编号",
"status":"M",
"tag":"BizNb",
"tno":"2",
"type":"Max20Text"
},
{
"label":"修改状态",
"status":"M",
"tag":"ModfyStat",
"tno":"3",
"type":"ModificationStateCode(Max4Text)"
},
{
"label":"理由",
"status":"O",
"tag":"Rsn",
"tno":"4",
"type":"Max60Text"
}
],
"desp":"修改确认信息",
"name":"ModConfInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"4",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"child":[
{
"label":"修改后通知行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"修改后通知行行名",
"status":"M",
"tag":"BkNm",
"tno":"2",
"type":"Max100Text"
},
{
"label":"修改后通知行地址",
"status":"O",
"tag":"Adr",
"tno":"3",
"type":"Max100Text"
},
{
"label":"修改后通知行邮编",
"status":"O",
"tag":"PstCd",
"tno":"4",
"type":"Max10Text"
},
{
"label":"修改后通知行电话",
"status":"O",
"tag":"PhNb",
"tno":"5",
"type":"Max16Text"
}
],
"desp":"通知行信息",
"name":"AdvsBkInfo",
"status":"M"
}
],
"desp":"GroupHeader",
"name":"LCInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"4",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"child":[
{
"label":"收单行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"收单行行名",
"status":"M",
"tag":"BkNm",
"tno":"2",
"type":"Max100Text"
},
{
"label":"收单行地址",
"status":"O",
"tag":"Adr",
"tno":"3",
"type":"Max100Text"
}
],
"desp":"ReceivingBank",
"name":"RcvBk",
"status":"M"
},
{
"child":[
{
"label":"单据金额",
"status":"M",
"tag":"DocsAmt",
"tno":"1",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"索偿金额",
"status":"M",
"tag":"ClmAmt",
"tno":"2",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"交单行费用",
"status":"O",
"tag":"PresnBkChrgs",
"tno":"3",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"单据明细",
"status":"M",
"tag":"DocsDtls",
"tno":"4",
"type":"Max400Text"
},
{
"label":"发票信息",
"status":"O",
"tag":"InvInfo",
"tno":"5",
"type":"Max100Text"
},
{
"label":"收款行行号",
"status":"M",
"tag":"CdtrAgt",
"tno":"6",
"type":"Max20Text"
},
{
"label":"收款行行名",
"status":"M",
"tag":"CdtrAgtNm",
"tno":"7",
"type":"Max100Text"
},
{
"child":[
{
"label":"收款人账号",
"status":"O",
"tag":"CdtrAcct",
"tno":"1",
"type":"Max35Text"
},
{
"label":"收款人名称",
"status":"M",
"tag":"Nm",
"tno":"2",
"type":"Max100Text"
}
],
"desp":"Creditor",
"name":"Cdtr",
"status":"O"
},
{
"label":"影像附件标识",
"status":"O",
"tag":"Imgs",
"tno":"9",
"type":"AttachmentFlag(Max4Text)"
},
{
"label":"议付标识",
"status":"O",
"tag":"NegoFlag",
"tno":"10",
"type":"YesNoIndicator(Max4Text)"
},
{
"label":"快递单号",
"status":"O",
"tag":"ExpNb",
"tno":"11",
"type":"Max60Text"
},
{
"child":[
{
"label":"受益人名称",
"status":"M",
"tag":"Nm",
"tno":"1",
"type":"Max100Text"
},
{
"label":"受益人统一社会信用代码",
"status":"O",
"tag":"UniSocCdtCd",
"tno":"8",
"type":"Max18Text"
}
],
"desp":"BeneficiaryInformation",
"name":"BfcyInfo",
"status":"M"
},
{
"child":[
{
"label":"申请人名称",
"status":"M",
"tag":"Nm",
"tno":"1",
"type":"Max100Text"
}
],
"desp":"申请人信息",
"name":"ApplInfo",
"status":"M"
},
{
"label":"交单日期",
"status":"M",
"tag":"PresnDt",
"tno":"14",
"type":"ISODate"
},
{
"child":[
{
"label":"付款期限",
"status":"M",
"tag":"ExpOfPmt",
"tno":"2",
"type":"Max3NumericText"
},
{
"label":"远期付款指示",
"status":"O",
"tag":"UsncLCPmtInstr",
"tno":"3",
"type":"Max60Text"
},
{
"label":"到期日",
"status":"O",
"tag":"MatDt",
"tno":"4",
"type":"ISODate"
}
],
"desp":"Honour",
"name":"Hon",
"status":"M"
}
],
"desp":"DocumentsInformation",
"name":"DocsInfo",
"status":"M"
}
],
"desp":"PresentationInformation",
"name":"PresnInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"5",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"影像附件标识",
"status":"O",
"tag":"ImgsFlag",
"tno":"1",
"type":"AttachmentFlag(Max4Text)"
},
{
"child":[
{
"label":"收单行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"收单行行名",
"status":"M",
"tag":"BkNm",
"tno":"2",
"type":"Max100Text"
},
{
"label":"收单行地址",
"status":"O",
"tag":"Adr",
"tno":"3",
"type":"Max100Text"
}
],
"desp":"收单行信息",
"name":"RcvBk",
"status":"M"
},
{
"label":"快递单号",
"status":"O",
"tag":"ExpNb",
"tno":"3",
"type":"Max60Text"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"4",
"type":"Max2000Text"
}
],
"desp":"寄单索款修改信息",
"name":"PresnModInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"5",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"原报文标识号",
"status":"M",
"tag":"OrgnlMsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"原发起参与机构",
"status":"M",
"tag":"OrgnlInstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"原报文类型",
"status":"M",
"tag":"OrgnlMsgTp",
"tno":"3",
"type":"Max35Text"
}
],
"desp":"OriginalGroupHeader",
"name":"OrgnlGrpHdr",
"status":"M"
},
{
"child":[
{
"label":"到单编号",
"status":"M",
"tag":"BllArlRef",
"tno":"1",
"type":"Max20Text"
},
{
"label":"到单日期",
"status":"M",
"tag":"DtOfBllArl",
"tno":"2",
"type":"ISODate"
},
{
"label":"到单类型",
"status":"M",
"tag":"BllArlTp",
"tno":"3",
"type":"BillArrivalTypeCode(Max4Text)"
},
{
"label":"到单金额",
"status":"M",
"tag":"BllArlAmt",
"tno":"4",
"type":"ActiveCurrencyAndAmount"
}
],
"desp":"到单确认/到单修改确认信息",
"name":"BllArlConfInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"6",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"退单行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"到单编号",
"status":"M",
"tag":"BllArlRef",
"tno":"2",
"type":"Max20Text"
},
{
"label":"退单日期",
"status":"M",
"tag":"DtOfRtrDocs",
"tno":"3",
"type":"ISODate"
},
{
"label":"快递单号",
"status":"O",
"tag":"ExpNb",
"tno":"4",
"type":"Max60Text"
}
],
"desp":"退单信息",
"name":"RtrDocsInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"5",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"议付行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"议付编号",
"status":"M",
"tag":"NegoRef",
"tno":"2",
"type":"Max20Text"
},
{
"label":"议付日期",
"status":"M",
"tag":"DtOfNego",
"tno":"3",
"type":"ISODate"
},
{
"label":"议付金额",
"status":"O",
"tag":"NegoAmt",
"tno":"4",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"追索权",
"status":"M",
"tag":"RecStat",
"tno":"5",
"type":"RecourseStateCode(Max4Text)"
}
],
"desp":"议付业务信息",
"name":"NegoInfo",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"承付行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"到单编号",
"status":"M",
"tag":"BllArlRef",
"tno":"2",
"type":"Max20Text"
},
{
"label":"寄单索款金额",
"status":"O",
"tag":"PresnAmt",
"tno":"3",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"寄单索款日期",
"status":"O",
"tag":"Dt",
"tno":"4",
"type":"ISODate"
},
{
"label":"承付日期",
"status":"O",
"tag":"DtOfHon",
"tno":"5",
"type":"ISODate"
},
{
"label":"承付金额",
"status":"M",
"tag":"HonAmt",
"tno":"6",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"付款到期日",
"status":"M",
"tag":"DtOfPmt",
"tno":"7",
"type":"ISODate"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"8",
"type":"Max500Text"
}
],
"desp":"到期付款确认信息",
"name":"PmtsConfInfo",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"5",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"拒付行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"拒付声明",
"status":"M",
"tag":"RjtPmtStmt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"不符点内容",
"status":"M",
"tag":"DeyCntt",
"tno":"3",
"type":"Max500Text"
},
{
"label":"单据处理",
"status":"M",
"tag":"BllProc",
"tno":"4",
"type":"BillProcessCode(Max4Text)"
},
{
"label":"拒付日期",
"status":"M",
"tag":"RjtDt",
"tno":"5",
"type":"ISODate"
},
{
"child":[
{
"label":"到单编号",
"status":"M",
"tag":"BllArlRef",
"tno":"3",
"type":"Max20Text"
},
{
"label":"寄单索款金额",
"status":"O",
"tag":"PresnAmt",
"tno":"4",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"寄单索款日期",
"status":"O",
"tag":"PresnDt",
"tno":"5",
"type":"ISODate"
}
],
"desp":"到单信息",
"name":"PresnInfo",
"status":"M"
}
],
"desp":"拒付信息",
"name":"PmtRjtInfo",
"status":"M"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"5",
"type":"Max200Text"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"6",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"交单行行号",
"status":"M",
"tag":"PresnBkCode",
"tno":"1",
"type":"Max20Text"
},
{
"label":"寄单索款编号",
"status":"M",
"tag":"PresnNb",
"tno":"2",
"type":"Max20Text"
}
],
"desp":"PresentationIdentification",
"name":"PresnId",
"status":"M"
},
{
"child":[
{
"label":"到单编号",
"status":"M",
"tag":"BllArlRef",
"tno":"1",
"type":"Max20Text"
},
{
"label":"付款金额",
"status":"M",
"tag":"Amt",
"tno":"2",
"type":"ActiveCurrencyAndAmount"
},
{
"label":"付款类型",
"status":"M",
"tag":"PmtTp",
"tno":"3",
"type":"PaymentTypeCode(Max4Text)"
},
{
"label":"清算方式",
"status":"M",
"tag":"ClrMeth",
"tno":"4",
"type":"ClearingMethodCode(Max4Text)"
},
{
"label":"业务种类",
"status":"O",
"tag":"TraTp",
"tno":"5",
"type":"TradeTypeCode(Max4Text)"
},
{
"child":[
{
"label":"付款行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"付款行行名",
"status":"M",
"tag":"BkNm",
"tno":"2",
"type":"Max100Text"
}
],
"desp":"DebtorAgent",
"name":"DbtrAgt",
"status":"M"
},
{
"child":[
{
"label":"付款人账号",
"status":"O",
"tag":"DbtrAcct",
"tno":"1",
"type":"Max32Text"
},
{
"label":"付款人名称",
"status":"M",
"tag":"Nm",
"tno":"2",
"type":"Max100Text"
}
],
"desp":"Debtor",
"name":"Dbtr",
"status":"M"
},
{
"child":[
{
"label":"收款行行号",
"status":"M",
"tag":"BkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"收款行行名",
"status":"M",
"tag":"BkNm",
"tno":"2",
"type":"Max100Text"
}
],
"desp":"CreditorAgent",
"name":"CdtrAgt",
"status":"M"
},
{
"child":[
{
"label":"收款人账号",
"status":"O",
"tag":"CdtrAcct",
"tno":"1",
"type":"Max35Text"
},
{
"label":"收款人名称",
"status":"M",
"tag":"Nm",
"tno":"2",
"type":"Max100Text"
}
],
"desp":"Creditor",
"name":"Cdtr",
"status":"M"
}
],
"desp":"PaymentInformation",
"name":"PmtInfo",
"status":"M"
},
{
"child":[
{
"label":"处理日期",
"status":"M",
"tag":"PrcDt",
"tno":"1",
"type":"ISODate"
},
{
"label":"即时转账报文发起行",
"status":"M",
"tag":"InstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"即时转账报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"3",
"type":"Max35Text"
},
{
"label":"清算状态",
"status":"M",
"tag":"StsCd",
"tno":"4",
"type":"ProcessCode(Max4Text)"
},
{
"label":"处理信息",
"status":"O",
"tag":"Desc",
"tno":"5",
"type":"Max105Text"
}
],
"desp":"PaymentResult",
"name":"PmtRslt",
"status":"O"
},
{
"label":"备注",
"status":"O",
"tag":"Remark",
"tno":"6",
"type":"Max200Text"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"7",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"原报文标识号",
"status":"M",
"tag":"OrgnlMsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"原发起参与机构",
"status":"M",
"tag":"OrgnlInstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"原报文类型",
"status":"M",
"tag":"OrgnlMsgTp",
"tno":"3",
"type":"Max35Text"
}
],
"desp":"OriginalGroupHeader",
"name":"OrgnlGrpHdr",
"status":"M"
},
{
"child":[
{
"label":"处理日期",
"status":"M",
"tag":"PrcDt",
"tno":"1",
"type":"ISODate"
},
{
"label":"即时转账报文发起行",
"status":"M",
"tag":"InstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"即时转账报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"3",
"type":"Max35Text"
},
{
"label":"清算状态",
"status":"M",
"tag":"StsCd",
"tno":"4",
"type":"ProcessCode(Max4Text)"
},
{
"label":"处理信息",
"status":"O",
"tag":"Desc",
"tno":"5",
"type":"Max105Text"
}
],
"desp":"PaymentResult",
"name":"PmtRslt",
"status":"M"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"5",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"开证行行号",
"status":"M",
"tag":"IssBkCd",
"tno":"1",
"type":"Max20Text"
},
{
"label":"信用证编号",
"status":"M",
"tag":"LCNb",
"tno":"2",
"type":"Max35Text"
}
],
"desp":"LCIdentification",
"name":"LCId",
"status":"M"
},
{
"child":[
{
"label":"信用证有效期",
"status":"M",
"tag":"ExpDt",
"tno":"1",
"type":"ISODate"
},
{
"child":[
{
"label":"申请人名称",
"status":"M",
"tag":"Nm",
"tno":"1",
"type":"Max100Text"
},
{
"label":"申请人统一社会信用代码",
"status":"M",
"tag":"UniSocCdtCd",
"tno":"2",
"type":"Max18Text"
},
{
"label":"申请人地址",
"status":"M",
"tag":"Adr",
"tno":"3",
"type":"Max100Text"
},
{
"label":"申请人邮编",
"status":"O",
"tag":"PstCd",
"tno":"4",
"type":"Max10Text"
},
{
"label":"申请人电话",
"status":"O",
"tag":"PhNb",
"tno":"5",
"type":"Max16Text"
},
{
"label":"申请人开户行行号",
"status":"O",
"tag":"DbtrAgt",
"tno":"6",
"type":"Max20Text"
},
{
"label":"申请人开户行行名",
"status":"O",
"tag":"DbtrAgtNm",
"tno":"7",
"type":"Max100Text"
},
{
"label":"申请人账号",
"status":"O",
"tag":"DbtrAcct",
"tno":"8",
"type":"Max35Text"
}
],
"desp":"申请人信息",
"name":"ApplInfo",
"status":"M"
},
{
"child":[
{
"label":"受益人名称",
"status":"M",
"tag":"Nm",
"tno":"1",
"type":"Max100Text"
},
{
"label":"受益人地址",
"status":"M",
"tag":"Adr",
"tno":"2",
"type":"Max100Text"
},
{
"label":"受益人邮编",
"status":"M",
"tag":"PstCd",
"tno":"3",
"type":"Max10Text"
},
{
"label":"受益人电话",
"status":"M",
"tag":"PhNb",
"tno":"4",
"type":"Max16Text"
},
{
"label":"受益人开户行行号",
"status":"M",
"tag":"CdtrAgt",
"tno":"5",
"type":"Max20Text"
},
{
"label":"受益人开户行行名",
"status":"M",
"tag":"CdtrAgtNm",
"tno":"6",
"type":"Max100Text"
},
{
"label":"受益人账号",
"status":"M",
"tag":"CdtrAcct",
"tno":"7",
"type":"Max35Text"
},
{
"label":"受益人统一社会信用代码",
"status":"O",
"tag":"UniSocCdtCd",
"tno":"8",
"type":"Max18Text"
}
],
"desp":"收益人信息",
"name":"BfcyInfo",
"status":"M"
}
],
"desp":"信用证信息",
"name":"ReqOfCanInfo",
"status":"M"
},
{
"label":"注销/闭卷类型",
"status":"M",
"tag":"CanTp",
"tno":"4",
"type":"CancellationTypeCode(Max4Text)"
},
{
"label":"注销/闭卷原因",
"status":"O",
"tag":"CanRsn",
"tno":"5",
"type":"Max100Text"
},
{
"label":"处理日期",
"status":"O",
"tag":"PrcDt",
"tno":"6",
"type":"ISODate"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"本报文页码",
"status":"M",
"tag":"PgNb",
"tno":"1",
"type":"Max5NumericText"
},
{
"label":"最后一页指示符",
"status":"M",
"tag":"LastPgInd",
"tno":"2",
"type":"YesNoIndicator(Max4Text)"
}
],
"desp":"MessagePagination",
"name":"MsgPgntn",
"status":"M"
},
{
"child":[
{
"label":"对账日期",
"status":"M",
"tag":"CreDt",
"tno":"1",
"type":"ISODate"
},
{
"label":"对账直接参与机构行号",
"status":"M",
"tag":"BkCd",
"tno":"2",
"type":"Max20Text"
},
{
"cycs":[
[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"发起接收标识",
"status":"M",
"tag":"SndrRcvrInd",
"tno":"2",
"type":"SenderReceiverIndicator(Max4Text)"
},
{
"label":"发起直接参与机构",
"status":"M",
"tag":"InstgAgt",
"tno":"3",
"type":"Max20Text"
},
{
"label":"报文类型",
"status":"M",
"tag":"MsgTp",
"tno":"4",
"type":"Max35Text"
},
{
"label":"报文处理状态",
"status":"M",
"tag":"OrgnlMsgPrcSts",
"tno":"5",
"type":"ProcessCode(Max4Text)"
}
]
]
}
],
"desp":"Report",
"name":"Rpt",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"对账日期",
"status":"M",
"tag":"CreDt",
"tno":"1",
"type":"ISODate"
}
],
"desp":"ReportingRequest",
"name":"RptgReq",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"发起直接参与机构",
"status":"M",
"tag":"InstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"报文类型",
"status":"M",
"tag":"MsgTp",
"tno":"3",
"type":"Max35Text"
},
{
"label":"发起接收标识",
"status":"M",
"tag":"SndrRcvrInd",
"tno":"4",
"type":"SenderReceiverIndicator(Max4Text)"
},
{
"label":"对账日期",
"status":"M",
"tag":"CreDt",
"tno":"5",
"type":"ISODate"
}
],
"desp":"Case",
"name":"Case",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"原报文标识号",
"status":"M",
"tag":"OrgnlMsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"原发起直接参与机构",
"status":"M",
"tag":"OrgnlInstgAgt",
"tno":"2",
"type":"Max20Text"
},
{
"label":"原报文类型",
"status":"M",
"tag":"OrgnlMsgTp",
"tno":"3",
"type":"Max35Text"
},
{
"label":"原报文处理状态",
"status":"M",
"tag":"OrgnlMsgPrcSts",
"tno":"4",
"type":"ProcessCode(Max4Text)"
},
{
"child":[
{
"label":"报文内容原文",
"status":"M",
"tag":"Data",
"tno":"1",
"type":"Any"
}
],
"desp":"报文内容原文",
"name":"Data",
"status":"M"
}
],
"desp":"DuplicateDetails",
"name":"DplctDtls",
"status":"M"
}
]
\ No newline at end of file
export default [
{
"child":[
{
"label":"报文标识号",
"status":"M",
"tag":"MsgId",
"tno":"1",
"type":"Max35Text"
},
{
"label":"报文发送时间",
"status":"M",
"tag":"CreDtTm",
"tno":"2",
"type":"ISODateTime"
},
{
"child":[
{
"label":"发起直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructingAgent",
"name":"InstgAgt",
"status":"M"
},
{
"child":[
{
"label":"接收直接参与机构",
"status":"M",
"tag":"MmbId",
"tno":"1",
"type":"Max20Text"
},
{
"child":[
{
"label":"发起/接收参与机构",
"status":"M",
"tag":"Id",
"tno":"1",
"type":"Max20Text"
}
],
"desp":"BranchIdentification",
"name":"BrnchId",
"status":"M"
}
],
"desp":"InstructedAgent",
"name":"InstdAgt",
"status":"M"
},
{
"label":"系统编号",
"status":"M",
"tag":"SysCd",
"tno":"5",
"type":"SystemCode(Max4Text)"
},
{
"label":"备注",
"status":"O",
"tag":"Rmk",
"tno":"6",
"type":"Max256Text"
}
],
"desp":"GroupHeader",
"name":"GrpHdr",
"status":"M"
},
{
"child":[
{
"label":"原系统日期",
"status":"M",
"tag":"OrgnlSysDt",
"tno":"1",
"type":"ISODate"
},
{
"label":"原系统状态",
"status":"M",
"tag":"OrgnlSysSts",
"tno":"2",
"type":"SystemStatus(Max4Text)"
},
{
"label":"系统当前日期",
"status":"M",
"tag":"CurSysDt",
"tno":"3",
"type":"ISODate"
},
{
"label":"系统当前状态",
"status":"M",
"tag":"CurSysSts",
"tno":"4",
"type":"SystemStatus(Max4Text)"
},
{
"label":"线上清算开关",
"status":"O",
"tag":"OnLnSwitch",
"tno":"5",
"type":"OnLineSwitch(Max4Text)"
},
{
"label":"行名行号变更期数",
"status":"O",
"tag":"BkChngNb",
"tno":"6",
"type":"Exact8NumericText"
},
{
"label":"系统参数变更期数",
"status":"O",
"tag":"ParamChngNb",
"tno":"7",
"type":"Exact8NumericText"
}
],
"desp":"SystemStatusInformation",
"name":"SysStsInf",
"status":"M"
}
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment