FormIdModel.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace App\Models\QQ;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\QQ\FormIdModel
  6. *
  7. * @property int $id
  8. * @property string $appid
  9. * @property string $openid openid
  10. * @property string $form_id
  11. * @property int $send_at 使用时间
  12. * @property string $errmsg 发送错误信息
  13. * @property \Illuminate\Support\Carbon $created_at 创建时间
  14. * @property \Illuminate\Support\Carbon $updated_at
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel newModelQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel newQuery()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel query()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereAppid($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereCreatedAt($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereErrmsg($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereFormId($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereId($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereOpenid($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereSendAt($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\QQ\FormIdModel whereUpdatedAt($value)
  26. * @mixin \Eloquent
  27. */
  28. class FormIdModel extends Model
  29. {
  30. //
  31. protected $table = 'kdgx_qqmini_forms';
  32. protected $dateFormat = 'U';
  33. public $fillable = ['appid', 'openid', 'form_id', 'send_at', 'errmsg'];
  34. }