123456789101112131415 |
- <?php
- namespace app\youzan\model;
- class Brand extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'brand_name' =>'varchar',//品牌名称
- 'bid' =>'int',//采销id
- 'yz_brand_id' =>'int',//有赞品牌id
- 'brand_introduction' =>'text',//品牌介绍
- 'photo_url' =>'varchar',//品牌图片
- ];
- }
|