mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:07:06 +00:00
46 lines
2.2 KiB
PHP
46 lines
2.2 KiB
PHP
<?php
|
||
|
||
|
||
namespace App\Models;
|
||
|
||
|
||
|
||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
||
/**
|
||
* App\Models\ProjectTaskMailLog
|
||
*
|
||
* @property int $id
|
||
* @property int|null $userid 用户id
|
||
* @property int|null $task_id 任务id
|
||
* @property string|null $email 电子邮箱
|
||
* @property int|null $type 提醒类型:1第一次任务提醒,2第二次任务超期提醒
|
||
* @property int|null $is_send 邮件发送是否成功:0否,1是
|
||
* @property string|null $send_error 邮件发送错误详情
|
||
* @property \Illuminate\Support\Carbon|null $created_at
|
||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||
* @property \Illuminate\Support\Carbon|null $deleted_at
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog newModelQuery()
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog newQuery()
|
||
* @method static \Illuminate\Database\Query\Builder|ProjectTaskMailLog onlyTrashed()
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog query()
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereCreatedAt($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereDeletedAt($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereEmail($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereId($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereIsSend($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereSendError($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereTaskId($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereType($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereUpdatedAt($value)
|
||
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskMailLog whereUserid($value)
|
||
* @method static \Illuminate\Database\Query\Builder|ProjectTaskMailLog withTrashed()
|
||
* @method static \Illuminate\Database\Query\Builder|ProjectTaskMailLog withoutTrashed()
|
||
* @mixin \Eloquent
|
||
*/
|
||
class ProjectTaskMailLog extends AbstractModel
|
||
{
|
||
use SoftDeletes;
|
||
|
||
}
|