GoodSpec.php 435 B

1234567891011121314151617
  1. <?php
  2. namespace app\admin\model;
  3. class GoodSpec extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'spuCode' =>'varchar',//商品code
  9. 'spec_id' =>'bigint',//规格id
  10. 'spec_value_id' =>'varchar',//规格值
  11. 'is_del' =>'tinyint',//是否删除
  12. 'addtime' =>'datetime',//
  13. 'updatetime' =>'datetime',//
  14. ];
  15. }