SubscribemsgModel.php 640 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Fpdx\SubscribemsgModel
  6. *
  7. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\SubscribemsgModel newModelQuery()
  8. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\SubscribemsgModel newQuery()
  9. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\SubscribemsgModel query()
  10. * @mixin \Eloquent
  11. */
  12. class SubscribemsgModel extends Model
  13. {
  14. //
  15. protected $table = 'kdgx_subscribemsg';
  16. protected $dateFormat = 'U';
  17. protected $fillable = ['public_id', 'openid', 'scene'];
  18. }