1234567891011121314151617181920 |
- Ext.define('saas.model.help.DocProject', {
- extend: 'saas.model.Base',
- fields: [{
- name: 'id',
- type: 'int'
- }, {
- name: 'code'
- }, {
- name: 'name'
- }],
- proxy: {
- type: 'ajax',
- url: '/api/help/project/list',
- reader: {
- type: 'json',
- rootProperty: 'data'
- }
- }
- });
|