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.
45 lines
1.7 KiB
JavaScript
45 lines
1.7 KiB
JavaScript
Ext.define('MsCodeServiceFeeTemplate', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'OPTYPE', type: 'string' },
|
|
{ name: 'CORPID', type: 'string' },
|
|
{ name: 'CUSTOMERNAME', type: 'string' },
|
|
{ name: 'SERVICENAME', type: 'string' },
|
|
{ name: 'OPTYPEREF', type: 'string' },
|
|
{ name: 'CREATEUSER', type: 'string' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'DESCRIPTION', type: 'string' }
|
|
|
|
]
|
|
});
|
|
|
|
Ext.define('MsCodeServiceFeeTemplateDetail', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'TemplateID', type: 'string' },
|
|
{ name: 'OPField', type: 'string' },
|
|
{ name: 'FeeName', type: 'string' },
|
|
{ name: 'CustomerName', type: 'string' },
|
|
{ name: 'SERVICENAME', type: 'string' },
|
|
{ name: 'Client', type: 'number' },
|
|
{ name: 'CustomerType', type: 'string' },
|
|
{ name: 'UnitPrice', type: 'number' },
|
|
{ name: 'TAXRATE', type: 'number' },
|
|
{ name: 'Unit', type: 'string' },
|
|
{ name: 'Currency', type: 'string' },
|
|
{ name: 'Sort', type: 'number' },
|
|
{ name: 'FeeType', type: 'number' },
|
|
{ name: 'ExchangeRate', type: 'number' },
|
|
{ name: 'CreateUser', type: 'string' },
|
|
{ name: 'ModifiedUser', type: 'string' },
|
|
{ name: 'Remark', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|
|
|