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.
20 lines
822 B
JavaScript
20 lines
822 B
JavaScript
Ext.define('RptCtBankReconciliationModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{name: 'GID', type: 'string' }, //GID
|
|
{name: 'ITEM1', type: 'string' }, //日记账项目
|
|
{name: 'AMOUNT1', type: 'decimal' }, //日记账金额
|
|
{name: 'LINENUM1', type: 'int' }, //行号1
|
|
{name: 'ROWNUM1', type: 'int' }, //凭证行号1
|
|
{name: 'ITEM2', type: 'string' }, //对账单项目
|
|
{name: 'AMOUNT2', type: 'decimal' }, //对账単金额
|
|
{name: 'LINENUM2', type: 'int' }, //行号2
|
|
{name: 'ROWNUM2', type: 'int' }, //凭证行号2
|
|
{name: 'STARTGID', type: 'string' }, //账套启用GID
|
|
{name: 'CORPID', type: 'string' }, //分公司代码
|
|
{name: 'MODIFIEDUSER', type: 'string' }, //更改操作人gid
|
|
{name: 'MODIFIEDTIME', type: 'DateTime' } //更改操作时间
|
|
]
|
|
});
|