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/MsCodeEmployee/MsCodeEmployeeModel.js

32 lines
1.1 KiB
JavaScript

Ext.define('MsCodeEmployee', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'CORPID', type: 'string' },
{ name: 'USERCODE', type: 'string' },
{ name: 'USERNAME', type: 'string' },
{ name: 'SEX', type: 'string' },
{ name: 'ENROLLTIME', type: 'string' },
{ name: 'BIRTHDAY', type: 'string' },
{ name: 'OFFICEPHONE', type: 'string' },
{ name: 'HOMEPHONE', type: 'string' },
{ name: 'MOBILE', type: 'string' },
{ name: 'EMAIL1', type: 'string' },
{ name: 'EMAIL2', type: 'string' },
{ name: 'HOMEADDRESS', type: 'string' },
{ name: 'DEPTNAME', type: 'string' },
{ name: 'STATUS', type: 'string' },
{ name: 'LEAVEOFFICETIME', type: 'string' },
{ name: 'OFFICEADDR', type: 'string' },
{ name: 'CREATEUSER', type: 'string' },
{ name: 'CREATETIME', type: 'string' },
{ name: 'MODIFIEDUSER', type: 'string' },
{ name: 'MODIFIEDTIME', type: 'string' },
{ name: 'REMARK', type: 'string' }
]
});