| 123456789101112131415161718192021222324 |
- Ext.define('make.model.make.BomComposite', {
- extend: 'saas.model.Base',
- fields: [
- { name: 'id', type: 'int' },
- { name: 'bd_bomid', type: 'int' },
- { name: 'bd_detno', type: 'int' },
- { name: 'bd_sonid', type: 'int' },
- { name: 'bd_soncode', type: 'string' },
- { name: 'bd_unit', type: 'string' },
- { name: 'bd_baseqty', type: 'float' },
- { name: 'bd_replace', type: 'string' },
- { name: 'bd_remark', type: 'string' },
- { name: 'companyid', type: 'int' },
- { name: 'updaterId', type: 'int' },
- { name: 'updatetime', type: 'date' },
- { name: 'pd_text1', type: 'string' },
- { name: 'pd_text2', type: 'string' },
- { name: 'pd_text3', type: 'string' },
- { name: 'pd_text4', type: 'string' },
- { name: 'pd_text5', type: 'string' }
- ],
- //一对一映射
- //associations: [{ type: 'hasOne', model: 'saas.model.document.ProductDTO', associationKey: 'ProductDTO'}]
- });
|