123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace App\Models;
- use App\Models\BaseModel;
- /**
- * @description 系统设置
- * @author system;
- * @version 1.0
- * @date 2018-05-14 13:30:36
- *
- */
- class AlbumManufacturerModel extends BaseModel
- {
- /**
- * 数据表名
- *
- * @var string
- *
- */
- protected $table = 'album_manufacturer';
- /**
- * 主键
- */
- protected $primaryKey = 'id';
- //分页
- protected $perPage = PAGE_NUMS;
- /**
- * 可以被集体附值的表的字段
- *
- * @var string
- */
- protected $fillable = [
- 'app_id',
- 'app_secret',
- 'banner',
- 'logo',
- 'service_app_secret',
- 'service_app_id',
- 'goods_app_id',
- 'xyx_id',
- 'xyx_secret',
- 'store_id',
- 'name',
- 'illustrated_name',
- 'avatar',
- 'phone',
- 'address',
- 'lng',
- 'is_audit',
- 'lat',
- 'background_pic',
- 'advertising_pic',
- 'furniture_ads_pic',
- 'notice',
- 'notice_icon',
- 'show_notice',
- 'print_no',
- 'print_key',
- 'redirectapp',
- 'print_type',
- 'getPhone',
- 'getFocus'
- ];
- }
|