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/TruckMng/Viewsjs/MsLsPluAcc/MsLsPluAccModel.js

29 lines
1.0 KiB
JavaScript

2 years ago
Ext.define('MsLsPluAcc', {
extend: 'Ext.data.Model',
idProperty: 'SerialNo',
fields: [
{ name: 'SerialNo', type: 'number' },
{ name: 'JzDate', type: 'string' },
{ name: 'UserCode', type: 'string' },
{ name: 'UserName', type: 'string' },
{ name: 'TzType', type: 'string' },
{ name: 'TzType_Ref', type: 'string' },
{ name: 'BillNo', type: 'string' },
{ name: 'OrgCode', type: 'string' },
{ name: 'OrgCode_Ref', type: 'string' },
{ name: 'PluCode', type: 'string' },
{ name: 'PluCode_Ref', type: 'string' },
{ name: 'CkCode', type: 'string' },
{ name: 'CkCode_Ref', type: 'string' },
{ name: 'JxFsCount', type: 'number' },
{ name: 'JxJcCount', type: 'number' },
{ name: 'Remark', type: 'string' },
{ name: 'CodeAndName', type: 'string' }
]
});