index.js 431 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
export default class AutselModel {
  constructor() {
    this.data = {
      ownref: '', // 业务编号
      paytyp: '', // 汇款种类  I-汇入  O-汇出
      inidattim: '', // 创建时间
      inidatfro: '', // 起始时间
      inidattil: '', // 截止时间
      cptrou: '', // 邮路类型
      bchcon: '', // 业务机构
      usrcon: '', // 经办柜员
      sta: '',
      staLs: [],
      total: 0
    };
  }
}