check.js 409 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import CommonCheck from "../check.js"

/**
 * Swift邮路下的Check规则
 */
export default function () {
  return {
    ...CommonCheck.apply(this),
    "cptp.payuil": [{
      required: true,
      message: "必输项"
    }],
    "cptp.payeecountcode": [{
      required: true,
      message: "必输项"
    }],
    "cpdgrp.rec.sztyp": [{
      required: true,
      message: "必输项"
    }],



  }
}