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.
17 lines
619 B
JavaScript
17 lines
619 B
JavaScript
Ext.define('MsRptSaleLiRunTiChengModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' }, //GID
|
|
{name: 'USERGID', type: 'string' }, //USERGID
|
|
{name: 'ACCDATE', type: 'string' }, //ACCDATE
|
|
{name: 'TiCheng', type: 'decimal' }, //TiCheng
|
|
{name: 'ShiFa', type: 'decimal' }, //ShiFa
|
|
{name: 'KouFeiLv', type: 'decimal' }, //KouFeiLv
|
|
{name: 'REMARK', type: 'decimal' }, //KouFeiLv
|
|
{name: 'MODIFIEDUSER', type: 'string' }, //MODIFIEDUSER
|
|
{name: 'MODIFIEDTIME', type: 'DateTime' }, //MODIFIEDTIME
|
|
{name: 'USERNAME', type: 'string'} //USERGID
|
|
]
|
|
});
|