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.
29 lines
1.3 KiB
JavaScript
29 lines
1.3 KiB
JavaScript
Ext.define('MsCtBankDeployModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{name: 'GID', type: 'string' }, //惟一值
|
|
//{name: 'BANKGID', type: 'string' }, //银行GID
|
|
//{name: 'BANKNAME', type: 'string' }, //银行
|
|
{name: 'ACCGID', type: 'string' }, //银行
|
|
{name: 'ACCNAME2', type: 'string' }, //银行
|
|
{name: 'FCYNO', type: 'string' }, //外币编号RMB
|
|
{name: 'STARTROW', type: 'string' }, //读取开始行
|
|
{name: 'VOUDATE', type: 'string' }, //结算日期
|
|
{name: 'VOUTIME', type: 'string' }, //结算时间
|
|
{name: 'EXPLAN', type: 'string' }, //摘要
|
|
{name: 'DR', type: 'string' }, //借方
|
|
{name: 'CR', type: 'string' }, //贷方
|
|
{name: 'BLC', type: 'string'}, //余额
|
|
{name: 'DC', type: 'string' }, //借贷方向
|
|
{name: 'DRGJZ', type: 'string' }, //借方关键字
|
|
{name: 'CRGJZ', type: 'string'} //贷方关键字
|
|
//{ name: 'CORPID', type: 'string' }, //分公司GID
|
|
//{ name: 'CREATEUSER', type: 'string' }, //制单人GID
|
|
//{ name: 'CREATETIME', type: 'DateTime' }, //创建时间
|
|
//{ name: 'MODIFIEDUSER', type: 'string' },//最后一次更改操作人GID
|
|
//{ name: 'MODIFIEDTIME', type: 'DateTime' },//最后一次更改操作时间
|
|
//{ name: 'MODIFIEDUSERNAME', type: 'DateTime' }//最后一次更改操作人
|
|
]
|
|
});
|