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/MsCodeExcelExpFormat/MsCodeExcelExpFormatModel.js

33 lines
1.2 KiB
JavaScript

2 years ago
Ext.define('MsCodeExcelExpFormat', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'FMNAME', type: 'string' },
{ name: 'FILEPATH', type: 'string' },
{ name: 'CREATEUSER', type: 'string' },
{ name: 'CREATEUSERREF', type: 'string' },
{ name: 'CREATETIME', type: 'string' },
{ name: 'MODIFIEDUSER', type: 'string' },
{ name: 'MODIFIEDTIME', type: 'string' },
{ name: 'CREATETIME', type: 'string' },
{ name: 'CORPID', type: 'string' },
{ name: 'BSTYPE', type: 'string' },
{ name: 'REMARK', type: 'string' }
]
});
Ext.define('MsCodeExcelExpFormatDetail', {
extend: 'Ext.data.Model',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'TEMPLATEID', type: 'string' },
{ name: 'FIELDNAME', type: 'string' },
{ name: 'XP', type: 'number' },
{ name: 'YP', type: 'number' },
{ name: 'FIXSTR', type: 'string' }
]
});