12345678910111213141516171819 |
- <?php
- namespace app\admin\model;
- class GoodCombind extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'spuCode' =>'varchar',
- 'good_name' =>'varchar',
- 'childCode' =>'varchar',
- 'child_name' =>'varchar',
- 'child_num' =>'int',
- 'is_del' =>'tinyint',
- 'createtime' =>'datetime',
- 'updatetime' =>'datetime',
- ];
- }
|