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.
DS7/DSWeb/Areas/MvcShipping/Viewsjs/MsCodeOpDef/MsCodeOpDefModel.js

26 lines
841 B
JavaScript

2 years ago
Ext.define('MsCodeOpDef', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'CORPID', type: 'string' },
{ name: 'BSTYPE', type: 'string' },
{ name: 'FIELDNAME', type: 'string' },
{ name: 'FIELDTYPE', type: 'string' },
{ name: 'DEFVALUE', type: 'string' },
{ name: 'DEFVALUESTR', type: 'string' },
{ name: 'DEFVALUESTRDATE', type: 'string' },
{ name: 'DEFVALUESTRBOOL', type: 'string' },
{ name: 'REMARKS', type: 'string' }
]
});
Ext.define('MsCodeFieldName', {
extend: 'Ext.data.Model',
idProperty: 'FieldName',
fields: [
{ name: 'FieldName', type: 'string' }
]
});