Brand.php 381 B

123456789101112131415
  1. <?php
  2. namespace app\youzan\model;
  3. class Brand extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'brand_name' =>'varchar',//品牌名称
  9. 'bid' =>'int',//采销id
  10. 'yz_brand_id' =>'int',//有赞品牌id
  11. 'brand_introduction' =>'text',//品牌介绍
  12. 'photo_url' =>'varchar',//品牌图片
  13. ];
  14. }