Broker System for Supercredit
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

funder.aaa.trail.model.ts 438B

123456789101112131415
  1. import {PayInAAARowModel} from './Pay.In.AAA.Row.model';
  2. export class FunderAaaTrailModel{
  3. public Period: Date; // valid only year, and month
  4. public Rows: PayInAAARowModel[];
  5. constructor(payload: Partial<FunderAaaTrailModel>) {
  6. this.Period = new Date(payload.Period);
  7. this.Rows = [];
  8. if ( payload.Rows ){
  9. payload.Rows.forEach( v => {
  10. this.Rows.push (new PayInAAARowModel(v));
  11. });
  12. }
  13. }
  14. }