12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models\Log;
- use App\Models\Model;
- /**
- * App\Models\Log\FpdxMiniprogramIntoQueueModel
- *
- * @property string $openid openid
- * @property int $created_at 创建时间
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxMiniprogramIntoQueueModel whereOpenid($value)
- * @mixin \Eloquent
- */
- class FpdxMiniprogramIntoQueueModel extends Model
- {
- protected $table = "fpdx_miniprogram_into_queue";
- public $timestamps = false;
- protected $fillable = ['openid', 'created_at'];
- }
|