dootask/app/Models/WorkflowProcMsg.php
2023-04-12 16:25:26 +08:00

31 lines
1.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Models;
/**
* App\Models\WorkflowProcMsg
*
* @property int $id
* @property string|null $type 信息类型candidate-候选人、participant-参与人、notifier-抄送人)
* @property int|null $proc_inst_id 流程实例ID
* @property int|null $userid 会员ID
* @property int|null $msg_id 消息ID
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg query()
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereMsgId($value)
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereProcInstId($value)
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|WorkflowProcMsg whereUserid($value)
* @mixin \Eloquent
*/
class WorkflowProcMsg extends AbstractModel
{
}