GoodCombind.php 437 B

123456789101112131415161718
  1. <?php
  2. namespace app\cxinv\model;
  3. class GoodCombind extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'spuCode' =>'varchar',//
  9. 'good_name' =>'varchar',//
  10. 'childCode' =>'varchar',//
  11. 'child_name' =>'varchar',//
  12. 'child_num' =>'int',//
  13. 'is_del' =>'tinyint',//
  14. 'createtime' =>'datetime',//
  15. 'updatetime' =>'datetime',//
  16. ];
  17. }