RecBalance2.js 551 B

123456789101112131415
  1. Ext.define('saas.model.money.RecBalance2', {
  2. extend: 'saas.model.Base',
  3. fields: [
  4. { name: 'id', type: 'int' },
  5. { name: 'rbd_detno', type: 'int' },
  6. { name: 'rbd_ym', type: 'int' },
  7. { name: 'rbd_slid', type: 'int' },
  8. { name: 'rbd_slcode', type: 'string' },
  9. { name: 'rbd_slkind', type: 'string' },
  10. { name: 'rbd_sldate', type: 'date' },
  11. { name: 'rbd_amount', type: 'float' },
  12. { name: 'rbd_nowbalance', type: 'float' },
  13. { name: 'rbd_remark', type: 'string' }
  14. ]
  15. });