|
|
|
|
Ext.define('MsCwCurrencyRateModel', {
|
|
|
|
|
extend: 'Ext.data.Model',
|
|
|
|
|
idProperty: 'GID',
|
|
|
|
|
fields: [
|
|
|
|
|
{ name: 'GID', type: 'string' }, //惟一值
|
|
|
|
|
{name: 'LINKGID', type: 'string' }, //货币GID
|
|
|
|
|
{name: 'ACCDATE', type: 'string' }, //会计期间
|
|
|
|
|
{name: 'BEGRATE', type: 'decimal' }, //期初汇率
|
|
|
|
|
{name: 'ENDRATE', type: 'decimal' }, //期末汇率
|
|
|
|
|
{name: 'CORPID', type: 'string' }, //分公司GID
|
|
|
|
|
{name: 'CREATEUSER', type: 'string' }, //创建人GID
|
|
|
|
|
{name: 'CREATETIME', type: 'DateTime' }, //创建时间
|
|
|
|
|
{name: 'MODIFIEDUSER', type: 'string' }, //最后一次更改操作人GID
|
|
|
|
|
{name: 'MODIFIEDTIME', type: 'DateTime' }, //最后一次更改操作时间
|
|
|
|
|
{name: 'ISDELETE', type: 'bool' }, //是否删除
|
|
|
|
|
{name: 'DELETEUSER', type: 'string' }, //删除人GID
|
|
|
|
|
{name: 'DELETETIME', type: 'DateTime' }, //删除时间
|
|
|
|
|
{name: 'STARTGID', type: 'string' } //总账已启用已登录账套GID
|
|
|
|
|
]
|
|
|
|
|
});
|