You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
668 B
JavaScript
16 lines
668 B
JavaScript
Ext.define('FeeFileModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'BillNo', type: 'string' },
|
|
{ name: 'File_Type', type: 'number' },
|
|
{ name: 'UpdateTime', type: 'string' },
|
|
{ name: 'Operator', type: 'string' },
|
|
{ name: 'File_Path', type: 'string' },
|
|
{ name: 'File_Name', type: 'string' },
|
|
{ name: 'File_DocType', type: 'string' },
|
|
{ name: 'File_DocNo', type: 'string' },
|
|
{ name: 'File_OriginalName', type: 'string' }
|
|
]
|
|
}); |