CatSpecs.php 329 B

123456789101112131415
  1. <?php
  2. namespace app\admin\model;
  3. class CatSpecs extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'specs_id' =>'bigint',//规格id
  9. 'cat_id' =>'bigint',//分类规格id
  10. 'is_del' =>'tinyint',//
  11. 'addtime' =>'datetime',//
  12. ];
  13. }