家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProductCollection.php 297B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 收藏夹
  6. * Class ProductCollection
  7. * @package App\Models
  8. */
  9. class ProductCollection extends Model
  10. {
  11. protected $fillable = [
  12. 'wechat_id', // 微信号id(open_id)
  13. 'product_id' // 产品id
  14. ];
  15. }