12345678910111213141516 |
- <?php
- namespace app\admin\model;
- class SpecValue extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'spec_id' =>'bigint',//规格id
- 'spec_value' =>'varchar',//规格值
- 'is_del' =>'tinyint',//
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|