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.

24 lines
813 B
JavaScript

Ext.define('MsCodeLandPrice', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'CORPID', type: 'string' },
{ name: 'BSSTATUS', type: 'string' },
{ name: 'LOADPORT', type: 'string' },
{ name: 'ADDR', type: 'string' },
{ name: 'PRICE', type: 'string' },
{ name: 'DISTANCE', type: 'string' },
{ name: 'CREATEUSER', type: 'string' },
{ name: 'CREATEUSERREF', type: 'string' },
{ name: 'CREATETIME', type: 'string' },
{ name: 'AUDITOPERATOR', type: 'string' },
{ name: 'AUDITOPERATORREF', type: 'string' },
{ name: 'AUDITDATE', type: 'string' },
{ name: 'REMARK', type: 'string' }
]
});