SpecValue.php 372 B

12345678910111213141516
  1. <?php
  2. namespace app\admin\model;
  3. class SpecValue extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'spec_id' =>'bigint',//规格id
  9. 'spec_value' =>'varchar',//规格值
  10. 'is_del' =>'tinyint',//
  11. 'addtime' =>'datetime',//
  12. 'updatetime' =>'datetime',//
  13. ];
  14. }