Pattern.js 58.4 KB
Newer Older
chenwen committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export default {
    "bctp.recget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.rec.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bctp.recget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "bcdgrp.rec.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],

panziyi committed
19
    "bcdgrp.cbs.max.amt":[
20
        {type: "string", required: false, message: "必输项"},
panziyi committed
21 22 23
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
chenwen committed
24 25 26 27 28
    "bcdgrp.dre.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],

panziyi committed
29
    "bcdgrp.cbs.opn1.amt":[
30
        {type: "string", required: false, message: "必输项"},
panziyi committed
31 32 33
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
chenwen committed
34 35 36 37 38
    "bcdgrp.dre.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "bcdgrp.rec.rcvdat":[
39 40
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
chenwen committed
41 42
    ],
    "bcdgrp.rec.advdat":[
43 44
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
chenwen committed
45 46 47 48 49 50 51 52 53 54 55
    ],
    "bcdgrp.rmi.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.rmi.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],

    "bcdgrp.rec.matdat":[
56 57
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
chenwen committed
58 59
    ],
    "bcdgrp.rec.predat":[
60 61
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
chenwen committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    ],

    "bcdgrp.drr.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.rec.docsta":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
    "bcdgrp.drr.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "liaall.tenstm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],


panziyi committed
82 83 84 85 86
    "setmod.redamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
chenwen committed
87 88 89



panziyi committed
90
    "setmod.docamt":[
91
        {type: "string", required: false, message: "必输项"},
panziyi committed
92 93 94
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
chenwen committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    "bcdgrp.blk.colins":[
        {type: "string", required: true, message: "必输项"},
        {max: 65,message:"长度不能超过65"}
    ],


    "bcdgrp.blk.chgtxt":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.blk.dftins":[
        {type: "string", required: true, message: "必输项"},
        {max: 65,message:"长度不能超过65"}
    ],





    "bcdgrp.blk.othins":[
        {type: "string", required: true, message: "必输项"},
        {max: 65,message:"长度不能超过65"}
    ],



121
    "bctp.drep.ptsget.sdamod.dadsnd":[
chenwen committed
122 123 124
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
125
    "bctp.rmip.ptsget.sdamod.dadsnd":[
chenwen committed
126
        {type: "string", required: false, message: "必输项"},
127 128 129 130 131 132 133 134 135
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.dre.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bctp.drep.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
chenwen committed
136 137
    ],

138 139 140 141 142 143 144 145
    "bcdgrp.rmi.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bctp.rmip.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
chenwen committed
146

147
    "bcdgrp.dre.namelc":[
chenwen committed
148 149 150
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
151 152 153
    "bcdgrp.rmi.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
154
    ],
155 156
    "bcdgrp.dre.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
panziyi committed
157
        {max: 35,message:"长度不能超过35"}
chenwen committed
158
    ],
159 160 161 162 163 164
    "bcdgrp.dre.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.rmi.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
panziyi committed
165
        {max: 35,message:"长度不能超过35"}
166 167 168 169 170 171 172 173 174 175 176 177 178 179
    ],
    "bcdgrp.rmi.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.dre.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.rmi.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.co2.pts.ref":[
chenwen committed
180
        {type: "string", required: false, message: "必输项"},
181
        {max: 16,message:"长度不能超过16"}
chenwen committed
182
    ],
183
    "bctp.co2p.ptsget.sdamod.dadsnd":[
chenwen committed
184 185 186
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
187
    "bctp.drrp.ptsget.sdamod.dadsnd":[
chenwen committed
188 189 190
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
191 192 193
    "bcdgrp.co2.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
chenwen committed
194
    ],
195 196 197 198 199 200
    "bctp.co2p.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "bcdgrp.drr.pts.extkey":[
chenwen committed
201 202 203
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
204
    "bctp.drrp.ptsget.sdamod.seainf":[
chenwen committed
205 206 207 208
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

209
    "bcdgrp.co2.namelc":[
chenwen committed
210 211 212
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
213
    "bcdgrp.drr.namelc":[
chenwen committed
214 215 216
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
217
    "bcdgrp.co2.pts.adrblk":[
chenwen committed
218
        {type: "string", required: true, message: "必输项"},
panziyi committed
219
        {max: 35,message:"长度不能超过35"}
chenwen committed
220
    ],
221 222 223
    "bcdgrp.co2.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
224
    ],
225
    "bcdgrp.drr.pts.adrblk":[
chenwen committed
226
        {type: "string", required: true, message: "必输项"},
panziyi committed
227
        {max: 35,message:"长度不能超过35"}
chenwen committed
228
    ],
229 230 231
    "bcdgrp.drr.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
232
    ],
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    "bcdgrp.co2.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.drr.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],














chenwen committed
255

256 257 258 259 260 261 262 263







    "cfatrt.cda.cfeogudamount":[
chenwen committed
264
        {type: "string", required: false, message: "必输项"},
265
        {max: 22,message:"长度不能超过22"}
chenwen committed
266
    ],
267
    "cfatrt.cda.cfeogudad":[
chenwen committed
268
        {type: "string", required: true, message: "必输项"},
269
        {max: 32,message:"长度不能超过32"}
chenwen committed
270
    ],
panziyi committed
271 272 273


    "bopmod.dbcgrp.bas.rptno":[
chenwen committed
274
        {type: "string", required: false, message: "必输项"},
panziyi committed
275
        {max: 22,message:"长度不能超过22"}
chenwen committed
276
    ],
panziyi committed
277
    "bopmod.dbcgrp.bas.tmpref":[
chenwen committed
278 279 280
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
281 282 283 284 285 286 287 288 289 290 291 292 293





    "bopmod.dbcgrp.bas.actiondesc":[
        {type: "string", required: true, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],



    "bopmod.dbcgrp.bas.buscode":[
294
        {type: "string", required: false, message: "必输项"},
panziyi committed
295
        {max: 22,message:"长度不能超过22"}
296 297
    ],

panziyi committed
298
    "bopmod.dbcgrp.bas.custcod":[
chenwen committed
299
        {type: "string", required: false, message: "必输项"},
panziyi committed
300 301 302 303 304 305 306
        {max: 18,message:"长度不能超过18"}
    ],


    "bopmod.dbcgrp.bas.custnm":[
        {type: "string", required: true, message: "必输项"},
        {max: 63,message:"长度不能超过63"}
chenwen committed
307
    ],
panziyi committed
308 309 310 311 312 313 314 315 316


    "bopmod.dbcgrp.bas.oppuser":[
        {type: "string", required: true, message: "必输项"},
        {max: 63,message:"长度不能超过63"}
    ],


    "bopmod.dbcgrp.bas.idcode":[
317
        {type: "string", required: false, message: "必输项"},
panziyi committed
318 319 320 321 322 323
        {max: 32,message:"长度不能超过32"}
    ],

    "bopmod.dbcgrp.bas.exrate":[
        {type: "string", required: false, message: "必输项"},
        {max: 13,message:"长度不能超过13"}
324
    ],
panziyi committed
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353

    "bopmod.dbcgrp.bas.lcyamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbcgrp.bas.lcyacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],
    "bopmod.dbcgrp.bas.fcyamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbcgrp.bas.fcyacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],
    "bopmod.dbcgrp.bas.othamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbcgrp.bas.othacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],

    "bopmod.dbcgrp.bas.txamt":[
        {type: "number", required: false, message: "必输项"}    ],

    "bopmod.dbcgrp.bas.outchargeamt":[
        {type: "number", required: false, message: "必输项"}    ],

    "bopmod.dbcgrp.bas.actuamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbcgrp.bas.issdate":[
354 355
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
    ],
    "bopmod.dbcgrp.bas.lcbgno":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "bopmod.dbcgrp.bas.tenor":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],

    "liaall.outamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "liaall.outpct":[
        {type: "string", required: false, message: "必输项"},
        {max: 6,message:"长度不能超过6"}
    ],
    "liaall.concur":[
chenwen committed
376 377 378
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
panziyi committed
379 380 381 382 383
    "liaall.misamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
chenwen committed
384

panziyi committed
385 386 387 388 389

    "liaall.exttotoldamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
390
    ],
panziyi committed
391 392 393 394
    "liaall.exttotamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
395
    ],
panziyi committed
396 397 398
    "setmod.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
399
    ],
panziyi committed
400 401 402 403 404 405 406 407





    "setmod.zmqacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
408
    ],
panziyi committed
409 410 411 412 413


    "setmod.glemod.gleshwstm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
414
    ],
panziyi committed
415 416

    "mtabut.coninf.oitinf.oit.inftxt":[
417
        {type: "string", required: true, message: "必输项"},
panziyi committed
418
        {max: 60,message:"长度不能超过60"}
419
    ],
panziyi committed
420 421 422


    "mtabut.coninf.oitset.oit.inftxt":[
423
        {type: "string", required: true, message: "必输项"},
panziyi committed
424 425 426 427
        {max: 60,message:"长度不能超过60"}
    ],

    "mtabut.coninf.conexedat":[
428 429
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
430 431 432 433 434 435 436 437 438
    ],
    "mtabut.coninf.usr.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 8,message:"长度不能超过8"}
    ],

    "trnmod.trndoc.advnam":[
        {type: "string", required: false, message: "必输项"},
        {max: 50,message:"长度不能超过50"}
439
    ],
panziyi committed
440
    "trnmod.trndoc.amdapl":[
441
        {type: "string", required: true, message: "必输项"},
panziyi committed
442
        {max: 50,message:"长度不能超过50"}
443
    ],
panziyi committed
444 445

    "trnmod.trndoc.advdoc":[
chenwen committed
446
        {type: "string", required: false, message: "必输项"},
panziyi committed
447
        {max: 1,message:"长度不能超过1"}
chenwen committed
448
    ],
panziyi committed
449
    "trnmod.trndoc.filrecv":[
450 451 452
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
    "trnmod.trndoc.doctrestm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],









    "trnmod.trndoc.condocstm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
    "trnmod.trndoc.rcvatt.seainf":[
chenwen committed
471 472 473 474
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

panziyi committed
475 476

    "bopmod.dbfgrp.bas.rptno":[
477
        {type: "string", required: false, message: "必输项"},
panziyi committed
478
        {max: 22,message:"长度不能超过22"}
479
    ],
panziyi committed
480 481 482
    "bopmod.dbfgrp.bas.tmpref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
chenwen committed
483
    ],
panziyi committed
484 485 486 487 488 489





    "bopmod.dbfgrp.bas.actiondesc":[
chenwen committed
490
        {type: "string", required: true, message: "必输项"},
panziyi committed
491
        {max: 32,message:"长度不能超过32"}
chenwen committed
492
    ],
panziyi committed
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507



    "bopmod.dbfgrp.bas.buscode":[
        {type: "string", required: false, message: "必输项"},
        {max: 22,message:"长度不能超过22"}
    ],

    "bopmod.dbfgrp.bas.custcod":[
        {type: "string", required: false, message: "必输项"},
        {max: 18,message:"长度不能超过18"}
    ],


    "bopmod.dbfgrp.bas.custnm":[
chenwen committed
508
        {type: "string", required: true, message: "必输项"},
panziyi committed
509
        {max: 63,message:"长度不能超过63"}
chenwen committed
510
    ],
panziyi committed
511 512 513


    "bopmod.dbfgrp.bas.oppuser":[
chenwen committed
514
        {type: "string", required: true, message: "必输项"},
panziyi committed
515
        {max: 63,message:"长度不能超过63"}
chenwen committed
516
    ],
panziyi committed
517 518 519


    "bopmod.dbfgrp.bas.idcode":[
520
        {type: "string", required: false, message: "必输项"},
panziyi committed
521
        {max: 32,message:"长度不能超过32"}
522
    ],
panziyi committed
523 524

    "bopmod.dbfgrp.bas.exrate":[
525
        {type: "string", required: false, message: "必输项"},
panziyi committed
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
        {max: 13,message:"长度不能超过13"}
    ],

    "bopmod.dbfgrp.bas.lcyamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbfgrp.bas.lcyacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],
    "bopmod.dbfgrp.bas.fcyamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbfgrp.bas.fcyacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],
    "bopmod.dbfgrp.bas.othamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbfgrp.bas.othacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],

    "bopmod.dbfgrp.bas.txamt":[
        {type: "number", required: false, message: "必输项"}    ],

    "bopmod.dbfgrp.bas.outchargeamt":[
        {type: "number", required: false, message: "必输项"}    ],

    "bopmod.dbfgrp.bas.actuamt":[
        {type: "number", required: false, message: "必输项"}    ],
    "bopmod.dbfgrp.bas.issdate":[
557 558
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
    ],
    "bopmod.dbfgrp.bas.lcbgno":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "bopmod.dbfgrp.bas.tenor":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],

    "cnybop.cnyout.spk":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "cnybop.cnyout.sbanktrano":[
        {type: "string", required: false, message: "必输项"},
        {max: 22,message:"长度不能超过22"}
    ],
    "cnybop.sbankname":[
        {type: "string", required: false, message: "必输项"},
        {max: 80,message:"长度不能超过80"}
    ],
    "cnybop.cnyout.sbankorgcode":[
        {type: "string", required: false, message: "必输项"},
        {max: 12,message:"长度不能超过12"}
584
    ],
panziyi committed
585 586 587 588 589 590 591 592 593 594 595 596 597 598
    "cnybop.cnyout.spayeeacct":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],
    "cnybop.cnyout.spayeeorgcode":[
        {type: "string", required: false, message: "必输项"},
        {max: 18,message:"长度不能超过18"}
    ],
    "cnybop.spayeename":[
        {type: "string", required: false, message: "必输项"},
        {max: 80,message:"长度不能超过80"}
    ],

    "cnybop.cnyout.spayercountrycode":[
599 600 601 602
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

panziyi committed
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
    "cnybop.spayername":[
        {type: "string", required: false, message: "必输项"},
        {max: 80,message:"长度不能超过80"}
    ],

    "cnybop.cnyout.sswiftbic":[
        {type: "string", required: false, message: "必输项"},
        {max: 11,message:"长度不能超过11"}
    ],

    "cnybop.cnyout.smidtransbank":[
        {type: "string", required: false, message: "必输项"},
        {max: 11,message:"长度不能超过11"}
    ],
    "cnybop.cnyout.spayeracct":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],
    "cnybop.outscale":[
        {type: "string", required: false, message: "必输项"},
        {max: 4,message:"长度不能超过4"}
    ],
    "cnybop.cnyout.dpayeedate":[
626 627
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
628 629 630 631 632 633 634 635 636 637 638 639
    ],
    "cnybop.cnyout.fprepayeeamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],

    "cnybop.cnyout.iaccountperiod":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "cnybop.cnyout.ftotalamt":[
640
        {type: "string", required: false, message: "必输项"},
panziyi committed
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
        {max: 18,message:"整数位不能超过14位"},
    ],
    "cnybop.cnyout.sorilevyno":[
        {type: "string", required: false, message: "必输项"},
        {max: 24,message:"长度不能超过24"}
    ],
    "cnybop.cnyout.fpayeeamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "cnybop.cnyout.fonshoreamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "cnybop.cnyout.fcustomsamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "cnybop.cnyout.foffshoreamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "cnybop.cnyout.frecordamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "cnybop.cnyout.fnogoodsamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "cnybop.saddwordout":[
        {type: "string", required: false, message: "必输项"},
        {max: 80,message:"长度不能超过80"}
    ],
    "trnmod.cipmod.dafnzh":[
        {type: "string", required: false, message: "必输项"},
        {max: 34,message:"长度不能超过34"}
    ],
    "trnmod.cipmod.dafnmc":[
chenwen committed
686 687 688
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
689 690 691 692 693 694 695 696 697 698 699 700 701 702
    "trnmod.cipmod.dddbsh":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],

    "trnmod.cipmod.zjg1hh":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.zjg2hh":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.zjg1mc":[
chenwen committed
703
        {type: "string", required: true, message: "必输项"},
panziyi committed
704
        {max: 35,message:"长度不能超过35"}
chenwen committed
705
    ],
panziyi committed
706
    "trnmod.cipmod.zjg2mc":[
chenwen committed
707 708 709
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
710
    "trnmod.cipmod.pyebchkey":[
711
        {type: "string", required: false, message: "必输项"},
panziyi committed
712
        {max: 35,message:"长度不能超过35"}
713
    ],
panziyi committed
714
    "trnmod.cipmod.fkrkhh":[
715
        {type: "string", required: false, message: "必输项"},
panziyi committed
716 717 718 719 720
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.pyebchnam":[
        {type: "string", required: true, message: "必输项"},
        {max: 70,message:"长度不能超过70"}
721
    ],
panziyi committed
722 723 724 725 726
    "trnmod.cipmod.fukrhm":[
        {type: "string", required: true, message: "必输项"},
        {max: 70,message:"长度不能超过70"}
    ],
    "trnmod.cipmod.recsehbch":[
727
        {type: "string", required: false, message: "必输项"},
panziyi committed
728
        {max: 35,message:"长度不能超过35"}
729
    ],
panziyi committed
730
    "trnmod.cipmod.fuyns1":[
chenwen committed
731 732 733
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
734
    "trnmod.cipmod.recsehbchnam":[
735
        {type: "string", required: true, message: "必输项"},
panziyi committed
736 737 738 739
        {max: 100,message:"长度不能超过100"}
    ],
    "trnmod.cipmod.staonebch":[
        {type: "string", required: false, message: "必输项"},
740 741
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
742
    "trnmod.cipmod.fuyns2":[
743
        {type: "string", required: true, message: "必输项"},
panziyi committed
744
        {max: 35,message:"长度不能超过35"}
745
    ],
panziyi committed
746
    "trnmod.cipmod.staonebchnam":[
747
        {type: "string", required: true, message: "必输项"},
panziyi committed
748 749 750 751
        {max: 100,message:"长度不能超过100"}
    ],
    "trnmod.cipmod.stasehbch":[
        {type: "string", required: false, message: "必输项"},
752 753
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
754
    "trnmod.cipmod.fuyns3":[
755 756 757
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
758
    "trnmod.cipmod.stasehbchnam":[
chenwen committed
759
        {type: "string", required: false, message: "必输项"},
panziyi committed
760
        {max: 100,message:"长度不能超过100"}
chenwen committed
761
    ],
panziyi committed
762 763 764
    "trnmod.cipmod.skrdz2":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
765
    ],
panziyi committed
766
    "trnmod.cipmod.fuyns4":[
767 768 769
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
770 771 772
    "trnmod.cipmod.skrdz3":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
773
    ],
panziyi committed
774 775 776
    "trnmod.cipmod.fkrdz2":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
777
    ],
panziyi committed
778
    "trnmod.cipmod.fkhkhh":[
chenwen committed
779
        {type: "string", required: false, message: "必输项"},
panziyi committed
780
        {max: 35,message:"长度不能超过35"}
chenwen committed
781
    ],
panziyi committed
782
    "trnmod.cipmod.skkhhh":[
chenwen committed
783
        {type: "string", required: false, message: "必输项"},
panziyi committed
784
        {max: 35,message:"长度不能超过35"}
chenwen committed
785
    ],
panziyi committed
786 787 788
    "trnmod.cipmod.skrdz4":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
789
    ],
panziyi committed
790 791 792
    "trnmod.cipmod.fkrdz3":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
793
    ],
panziyi committed
794
    "trnmod.cipmod.fkkhmc":[
chenwen committed
795 796 797
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
798
    "trnmod.cipmod.skkhhm":[
chenwen committed
799 800 801
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
802
    "trnmod.cipmod.skrdz5":[
chenwen committed
803
        {type: "string", required: true, message: "必输项"},
panziyi committed
804
        {max: 35,message:"长度不能超过35"}
chenwen committed
805
    ],
panziyi committed
806
    "trnmod.cipmod.fkrdz4":[
chenwen committed
807 808 809
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
810
    "trnmod.cipmod.fkhdzh":[
chenwen committed
811
        {type: "string", required: true, message: "必输项"},
panziyi committed
812
        {max: 35,message:"长度不能超过35"}
chenwen committed
813
    ],
panziyi committed
814
    "trnmod.cipmod.skkhdz":[
chenwen committed
815 816 817
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
818
    "trnmod.cipmod.skrdz6":[
chenwen committed
819 820 821
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
822
    "trnmod.cipmod.fkrdz5":[
chenwen committed
823 824 825
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
826
    "trnmod.cipmod.fkkhzh":[
827
        {type: "string", required: false, message: "必输项"},
panziyi committed
828
        {max: 35,message:"长度不能超过35"}
chenwen committed
829
    ],
panziyi committed
830
    "trnmod.cipmod.skkhzh":[
chenwen committed
831
        {type: "string", required: false, message: "必输项"},
panziyi committed
832
        {max: 35,message:"长度不能超过35"}
chenwen committed
833
    ],
panziyi committed
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
    "trnmod.cipmod.skrdz7":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.fkrdz6":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.fuynh2":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.fkrdz7":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
chenwen committed
849
    ],
panziyi committed
850 851 852 853 854 855 856 857 858
    "trnmod.cipmod.fuynh4":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.fuynh3":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trnmod.cipmod.ddbhao":[
859
        {type: "string", required: false, message: "必输项"},
panziyi committed
860
        {max: 35,message:"长度不能超过35"}
861
    ],
panziyi committed
862
    "trnmod.cipmod.feiyon":[
863
        {type: "string", required: false, message: "必输项"},
panziyi committed
864
        {max: 15,message:"长度不能超过15"}
chenwen committed
865
    ],
panziyi committed
866
    "trnmod.cipmod.fufeih":[
867
        {type: "string", required: false, message: "必输项"},
panziyi committed
868
        {max: 35,message:"长度不能超过35"}
chenwen committed
869
    ],
panziyi committed
870
    "trnmod.cipmod.ddmisu":[
871
        {type: "string", required: true, message: "必输项"},
panziyi committed
872
        {max: 100,message:"长度不能超过100"}
873
    ],
panziyi committed
874
    "trnmod.cipmod.feiyn2":[
875
        {type: "string", required: false, message: "必输项"},
panziyi committed
876 877 878 879 880 881
        {max: 15,message:"长度不能超过15"}
    ],

    "trnmod.cipmod.ffeih2":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
882
    ],
panziyi committed
883
    "trnmod.cipmod.fyo1bz":[
884 885
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
chenwen committed
886
    ],
panziyi committed
887 888 889
    "trnmod.cipmod.fyo2bz":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
chenwen committed
890
    ],
panziyi committed
891 892
    "trnmod.reconebch":[
        {type: "string", required: false, message: "必输项"},
893
        {max: 35,message:"长度不能超过35"}
chenwen committed
894
    ],
panziyi committed
895
    "trnmod.reconebchnam":[
896 897 898
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
899
    "trnmod.commen":[
900
        {type: "string", required: true, message: "必输项"},
panziyi committed
901
        {max: 30,message:"长度不能超过30"}
902
    ],
panziyi committed
903 904 905 906

    "liaall.limmod.ecifno":[
        {type: "string", required: false, message: "必输项"},
        {max: 22,message:"长度不能超过22"}
907
    ],
panziyi committed
908 909 910 911 912 913



    "liaall.limmod.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
chenwen committed
914
    ],
panziyi committed
915 916 917
    "liaall.limmod.wrkp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
918
    ],
panziyi committed
919
    "liaall.limmod.othp.ptsget.sdamod.dadsnd":[
chenwen committed
920
        {type: "string", required: false, message: "必输项"},
panziyi committed
921
        {max: 16,message:"长度不能超过16"}
chenwen committed
922
    ],
panziyi committed
923
    "liaall.limmod.limpts.wrk.pts.extkey":[
chenwen committed
924
        {type: "string", required: false, message: "必输项"},
925 926
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
927
    "liaall.limmod.wrkp.ptsget.sdamod.seainf":[
928
        {type: "string", required: false, message: "必输项"},
panziyi committed
929
        {max: 3,message:"长度不能超过3"}
chenwen committed
930
    ],
931

panziyi committed
932 933 934 935 936 937 938 939
    "liaall.limmod.limpts.oth.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "liaall.limmod.othp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
940

panziyi committed
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
    "liaall.limmod.comamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "liaall.limmod.limpts.wrk.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "liaall.limmod.limpts.oth.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "liaall.limmod.ccvamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
chenwen committed
958 959
    ],

panziyi committed
960 961 962 963 964




    "liaall.limmod.limpts.pfcod1":[
chenwen committed
965
        {type: "string", required: false, message: "必输项"},
panziyi committed
966
        {max: 14,message:"长度不能超过14"}
chenwen committed
967
    ],
panziyi committed
968 969 970 971 972
    "liaall.limmod.limpts.pfcod2":[
        {type: "string", required: false, message: "必输项"},
        {max: 14,message:"长度不能超过14"}
    ],

panziyi committed
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
    "trtcre.trtp.bcdget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.btdget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.brdget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.ledget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.bedget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trdgrp.rec.pntref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.bcdget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "trtcre.trtp.btdget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "trtcre.trtp.brdget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "trtcre.trtp.ledget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "trtcre.trtp.bedget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "trtcre.trdgrp.rec.pntnam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "trtcre.trtp.recget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trdgrp.rec.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.recget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "trtcre.trdgrp.rec.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "trtcre.trdgrp.fip.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.usr.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 8,message:"长度不能超过8"}
    ],
    "trtcre.trtp.usrget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "trtcre.trtp.fipp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trdgrp.fip.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trtcre.trtp.fipp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "trtcre.trdgrp.rec.issdat":[
1064 1065
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
    ],
    "trtcre.trdgrp.fip.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trtcre.trdgrp.fip.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trtcre.trdgrp.fip.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],



    "trtcre.trdgrp.fip.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],


    "trtcre.oriamt":[
1089 1090
        {type: "string", required: false, message: "必输项"},
        {max:17,message:"整数位不能超过14位"}
panziyi committed
1091 1092 1093
    ],
    "trtcre.trdgrp.rec.pctfin":[
        {type: "string", required: false, message: "必输项"},
1094
        {max: 6,message:"长度不能超过6"}
panziyi committed
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
    ],
    "trtcre.trtmod.finmod.dinjdm":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],

    "trtcre.extrat":[
        {type: "string", required: false, message: "必输项"},
        {max: 12,message:"长度不能超过12"}
    ],


    "trtcre.trdgrp.cbs.max.amt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "trtcre.trtmod.finmod.intdat":[
        {type: "string", required: false, message: "必输项"},
        {max: 2,message:"长度不能超过2"}
    ],



    "trtcre.trtmod.finmod.ratchgdat":[
        {type: "string", required: false, message: "必输项"},
        {max: 4,message:"长度不能超过4"}
    ],


    "trtcre.trdgrp.rec.tenday":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.graday":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trdgrp.rec.matdat":[
1134 1135
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
1136 1137 1138 1139 1140 1141 1142
    ],

    "trtcre.trtmod.finmod.fltval":[
        {type: "string", required: false, message: "必输项"},
        {max: 12,message:"长度不能超过12"}
    ],
    "trtcre.trdgrp.rec.stttendat":[
1143 1144
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
    ],

    "trtcre.trdgrp.rec.intrat":[
        {type: "string", required: false, message: "必输项"},
        {max: 14,message:"长度不能超过14"}
    ],


    "trtcre.trtmod.finmod.ovdintrat":[
        {type: "string", required: false, message: "必输项"},
        {max: 8,message:"长度不能超过8"}
    ],

    "trtcre.trtmod.finmod.shuilv":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],


    "trtcre.trdgrp.rec.actrat":[
        {type: "string", required: false, message: "必输项"},
        {max: 12,message:"长度不能超过12"}
    ],
    "trtcre.trtmod.finmod.fincod":[
        {type: "string", required: false, message: "必输项"},
        {max: 17,message:"长度不能超过17"}
    ],


    "trtcre.trdgrp.rec.trntyp":[
        {type: "string", required: false, message: "必输项"},
        {max: 6,message:"长度不能超过6"}
    ],



    "trtcre.trtmod.finmod.intamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],



    "trtcre.trdgrp.rec.oppacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],




1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
    "trtcre.trtmod.finmod.dinmod.dinjdm":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trtmod.finmod.dinmod.dinjls":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],

    "trtcre.trtmod.finmod.dinmod.ockhdm":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trtmod.finmod.dinmod.hxkhdm":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trtmod.finmod.dinmod.sxpfdm":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "trtcre.trtmod.finmod.dinmod.djhtno":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "trtcre.trtmod.finmod.dinmod.sxlexi":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trtmod.finmod.dinmod.spzhta":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.dinmod.chapdm":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trtmod.finmod.dinmod.chapmc":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],

    "trtcre.trtmod.finmod.dinmod.dakaje":[
        {type: "string", required: false, message: "必输项"},
        {max: 24,message:"长度不能超过24"}
    ],
    "trtcre.trtmod.finmod.dinmod.shuilv":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.dinmod.maxdje":[
        {type: "string", required: false, message: "必输项"},
        {max: 24,message:"长度不能超过24"}
    ],
    "trtcre.trtmod.finmod.dinmod.shpjgh":[
        {type: "string", required: false, message: "必输项"},
        {max: 26,message:"长度不能超过26"}
    ],
    "trtcre.trtmod.finmod.dinmod.mindje":[
        {type: "string", required: false, message: "必输项"},
        {max: 24,message:"长度不能超过24"}
    ],
    "trtcre.trtmod.finmod.dinmod.shpdch":[
        {type: "string", required: false, message: "必输项"},
        {max: 26,message:"长度不能超过26"}
    ],
    "trtcre.trtmod.finmod.dinmod.bizhog":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trtmod.finmod.dinmod.shpijg":[
        {type: "string", required: false, message: "必输项"},
        {max: 24,message:"长度不能超过24"}
    ],
    "trtcre.trtmod.finmod.dinmod.dakaqx":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.dinmod.spjgdc":[
        {type: "string", required: false, message: "必输项"},
        {max: 26,message:"长度不能超过26"}
    ],
    "trtcre.trtmod.finmod.dinmod.maxqix":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.dinmod.dinjlb":[
        {type: "string", required: false, message: "必输项"},
        {max: 26,message:"长度不能超过26"}
    ],
    "trtcre.trtmod.finmod.dinmod.minqix":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.dinmod.sheplb":[
        {type: "string", required: false, message: "必输项"},
        {max: 26,message:"长度不能超过26"}
    ],
    "trtcre.trtmod.finmod.dinmod.qixndw":[
        {type: "string", required: false, message: "必输项"},
        {max: 10,message:"长度不能超过10"}
    ],
    "trtcre.trtmod.finmod.dinmod.libor":[
        {type: "string", required: false, message: "必输项"},
        {max: 26,message:"长度不能超过26"}
    ],
    "liaall.outamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "liaall.outpct":[
        {type: "string", required: false, message: "必输项"},
        {max: 6,message:"长度不能超过6"}
    ],
    "liaall.concur":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "liaall.misamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],


    "liaall.exttotoldamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "liaall.exttotamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "setmod.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],





    "setmod.zmqacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],



    "mtabut.coninf.oitinf.oit.inftxt":[
        {type: "string", required: true, message: "必输项"},
        {max: 60,message:"长度不能超过60"}
    ],


    "mtabut.coninf.oitset.oit.inftxt":[
        {type: "string", required: true, message: "必输项"},
        {max: 60,message:"长度不能超过60"}
    ],

    "mtabut.coninf.conexedat":[
1361 1362
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
    ],
    "mtabut.coninf.usr.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 8,message:"长度不能超过8"}
    ],

    "trnmod.trndoc.advnam":[
        {type: "string", required: false, message: "必输项"},
        {max: 50,message:"长度不能超过50"}
    ],
    "trnmod.trndoc.amdapl":[
        {type: "string", required: true, message: "必输项"},
        {max: 50,message:"长度不能超过50"}
    ],

    "trnmod.trndoc.advdoc":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
    "trnmod.trndoc.filrecv":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trnmod.trndoc.doctrestm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],









    "trnmod.trndoc.condocstm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
    "trnmod.trndoc.rcvatt.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "financ.acc":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],


    "financ.ref2":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "financ.ref5":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],

    "financ.ref3":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],

    "financ.ref4":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trdgrp.rec.recaccount":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trtcre.trtp.recname":[
        {type: "string", required: false, message: "必输项"},
        {max: 80,message:"长度不能超过80"}
    ],
    "trtcre.trdgrp.rec.reccountrycode":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "trtcre.trdgrp.rec.recdistrictcode":[
        {type: "string", required: false, message: "必输项"},
        {max: 6,message:"长度不能超过6"}
    ],
    "liaall.limmod.ecifno":[
        {type: "string", required: false, message: "必输项"},
        {max: 22,message:"长度不能超过22"}
    ],



    "liaall.limmod.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "liaall.limmod.wrkp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "liaall.limmod.othp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "liaall.limmod.limpts.wrk.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "liaall.limmod.wrkp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "liaall.limmod.limpts.oth.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "liaall.limmod.othp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "liaall.limmod.comamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "liaall.limmod.limpts.wrk.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "liaall.limmod.limpts.oth.pts.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "liaall.limmod.ccvamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],





    "liaall.limmod.limpts.pfcod1":[
        {type: "string", required: false, message: "必输项"},
        {max: 14,message:"长度不能超过14"}
    ],
    "liaall.limmod.limpts.pfcod2":[
        {type: "string", required: false, message: "必输项"},
        {max: 14,message:"长度不能超过14"}
    ],
panziyi committed
1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
    "dftcre.dfdgrp.rec.pntref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "dftcre.dfdgrp.rec.pntnam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
    "dftcre.dfdgrp.rec.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],

    "dftcre.dfdgrp.rec.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],

    "dftcre.oriamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "dftcre.dfdgrp.apl.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],

    "dftcre.dfdgrp.cbs.max.amt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],

    "dftcre.dfdgrp.cbs.opn1.amt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "dftcre.dftp.aplp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "dftcre.dfdgrp.apl.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "dftcre.dftp.aplp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "dftcre.dfdgrp.apl.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],

    "dftcre.dfdgrp.apl.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "dftcre.dfdgrp.apl.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],


    "dftcre.dfdgrp.apl.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],

    "dftcre.dfdgrp.rec.stttendat":[
1590 1591
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
1592 1593 1594 1595 1596 1597
    ],
    "dftcre.dfdgrp.dff.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "dftcre.dfdgrp.rec.matdat":[
1598 1599
        //{type: "date", required: false, message: "输入正确的日期"}
        {type: "string", required: false, message: "输入正确的日期"}
panziyi committed
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
    ],
    "dftcre.dftp.dffp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "dftcre.dfdgrp.dff.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "dftcre.dftp.dffp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "dftcre.dfdgrp.rec.tenday":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "dftcre.dfdgrp.dff.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "dftcre.dfdgrp.dff.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "dftcre.dfdgrp.dff.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],

    "dftcre.dfdgrp.rec.actrat":[
        {type: "string", required: false, message: "必输项"},
        {max: 12,message:"长度不能超过12"}
    ],
    "dftcre.dfdgrp.dff.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],

    "dftcre.dfdgrp.rec.fltval":[
        {type: "string", required: false, message: "必输项"},
        {max: 9,message:"长度不能超过9"}
    ],

    "dftcre.dfdgrp.rec.bankno":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],

    "dftcre.dfdgrp.rec.bankcn":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],

    "dftcre.dfuamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 18,message:"整数位不能超过14位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],

    "dftcre.dfdgrp.rec.resamt":[
        {type: "number", required: false, message: "必输项"},
        {max: 12,message:"整数位不能超过8位"},
        {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    ],
    "dftcre.dfdgrp.rec.bnkact":[
        {type: "string", required: false, message: "必输项"},
        {max: 32,message:"长度不能超过32"}
    ],

    "financ.acc":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],


    "financ.ref2":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "financ.ref5":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],

    "financ.ref3":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],

    "financ.ref4":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
    "trtcre.trdgrp.rec.recaccount":[
        {type: "string", required: false, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "trtcre.trtp.recname":[
        {type: "string", required: false, message: "必输项"},
        {max: 80,message:"长度不能超过80"}
    ],
    "trtcre.trdgrp.rec.reccountrycode":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],

    "trtcre.trdgrp.rec.recdistrictcode":[
        {type: "string", required: false, message: "必输项"},
        {max: 6,message:"长度不能超过6"}
    ],
chenwen committed
1712
}