Advertisement
Guest User

ReembolsoModel

a guest
Dec 14th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     function ReembolsoModel() { //ReembolsoModel
  2.         this.id              = 0;
  3.         this.data            = new Date();
  4.         this.status          = '';
  5.         this.aprovador       = '';
  6.         this.limiteMensal    = '';
  7.         this.saldoDisponivel = '';
  8.  
  9.         this.dadosBancarios = { //DadosBancariosModel
  10.             numeroSolitacao = 0,
  11.             nome            = '',
  12.             banco           = '',
  13.             agencia         = '',
  14.             contaCorrente   = '',
  15.         };
  16.  
  17.         this.projeto = {        //ReembolsoProjetoModel
  18.             nome          = '',
  19.             empresa       = '',
  20.             valorPrevisto = '',
  21.             valorTotal    = '',
  22.             itens = {
  23.                 nome         = '',
  24.                 data         = new Date(),
  25.                 qtdValor     = 0.0,
  26.                 valor        = 0.0,
  27.                 origem       = '',
  28.                 destino      = '',
  29.                 reembolsavel = false,
  30.                 observacao   = ''
  31.             }
  32.         };
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement