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.

59 lines
2.2 KiB
JavaScript

//JS模型对应CS模型
Ext.define('SysUsermb', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'USERNAME', type: 'string' },
{ name: 'CODENAME', type: 'string' },
{ name: 'PASSWORD', type: 'string' },
{ name: 'SHOWNAME', type: 'string' },
{ name: 'ENROLLTIME', type: 'string' },
{ name: 'CREATEUSER', type: 'string' },
{ name: 'CREATETIME', type: 'string' },
{ name: 'MODIFIEDUSER', type: 'string' },
{ name: 'MODIFIEDTIME', type: 'string' },
{ name: 'ISDELETED', type: 'string' },
{ name: 'ISDISABLE', type: 'string' },
{ name: 'DELETEUSER', type: 'string' },
{ name: 'DELETETIME', type: 'string' },
{ name: 'NOCODE', type: 'string' },
{ name: 'OPENID', type: 'string' },
{ name: 'WECHATACCOUNT', type: 'string' },
{ name: 'DINGTALKACCOUNT', type: 'string' },
{ name: 'CWUSERNAME', type: 'string' },
{ name: 'CWPASSWORD', type: 'string' },
{ name: 'OFFICEPHONE', type: 'string' },
{ name: 'HOMEPHONE', type: 'string' },
{ name: 'MOBILE', type: 'string' },
{ name: 'FAX', type: 'string' },
{ name: 'EMAIL1', type: 'string' },
{ name: 'EMAIL2', type: 'string' },
{ name: 'HOMEADDRESS', type: 'string' },
{ name: 'REMARK', type: 'string' },
{ name: 'EMERGUSER', type: 'string' },
{ name: 'EMERGPHONE', type: 'string' },
{ name: 'EMERGEMAIL', type: 'string' },
{ name: 'POSTCODE', type: 'string' },
{ name: 'QQ', type: 'string' },
{ name: 'MSN', type: 'string' },
{ name: 'FINANCESOFTCODE', type: 'string' },
{ name: 'IMAGEURL', type: 'string' },
{ name: 'SIGNATUREURL', type: 'string' },
{ name: 'MAILSIGN', type: 'string' },
{ name: 'DEPTNAME', type: 'string' },
{ name: 'COMPANYID', type: 'string' },
{ name: 'COMPANYNAME', type: 'string' },
{ name: 'USERCOMPANYGID', type: 'string' },
{ name: 'USERBASEINFOGID', type: 'string' },
{ name: 'isUseSystem', type: 'string' },
{ name: 'isDisable', type: 'string' }
]
});