FpdxMiniprogramIntoQueueModel.php 993 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Models\Log;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Log\FpdxMiniprogramIntoQueueModel
  6. *
  7. * @property string $openid openid
  8. * @property int $created_at 创建时间
  9. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel newModelQuery()
  10. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel newQuery()
  11. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel query()
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel whereCreatedAt($value)
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel whereOpenid($value)
  14. * @mixin \Eloquent
  15. */
  16. class FpdxMiniprogramIntoQueueModel extends Model
  17. {
  18. protected $table = "fpdx_miniprogram_into_queue";
  19. public $timestamps = false;
  20. protected $fillable = ['openid', 'created_at'];
  21. }