AlbumManufacturerModel.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace App\Models;
  3. use App\Models\BaseModel;
  4. /**
  5. * @description 系统设置
  6. * @author system;
  7. * @version 1.0
  8. * @date 2018-05-14 13:30:36
  9. *
  10. */
  11. class AlbumManufacturerModel extends BaseModel
  12. {
  13. /**
  14. * 数据表名
  15. *
  16. * @var string
  17. *
  18. */
  19. protected $table = 'album_manufacturer';
  20. /**
  21. * 主键
  22. */
  23. protected $primaryKey = 'id';
  24. //分页
  25. protected $perPage = PAGE_NUMS;
  26. /**
  27. * 可以被集体附值的表的字段
  28. *
  29. * @var string
  30. */
  31. protected $fillable = [
  32. 'circleOfFriends',
  33. 'introduce',
  34. 'banner',
  35. 'qrcode',
  36. 'logo',
  37. 'service_app_secret',
  38. 'wxFurniture_template_id',
  39. 'wxaccount_template_id',
  40. 'service_app_id',
  41. 'goods_app_id',
  42. 'xyx_id',
  43. 'xyx_secret',
  44. 'store_id',
  45. 'name',
  46. 'illustrated_name',
  47. 'avatar',
  48. 'phone',
  49. 'address',
  50. 'lng',
  51. 'is_audit',
  52. 'lat',
  53. 'background_pic',
  54. 'advertising_pic',
  55. 'furniture_ads_pic',
  56. 'notice',
  57. 'notice_icon',
  58. 'show_notice',
  59. 'print_no',
  60. 'print_key',
  61. 'redirectapp',
  62. 'print_type',
  63. 'getPhone',
  64. 'getFocus',
  65. 'share_title',
  66. 'share_image'
  67. ];
  68. }