AutoEmailLog.php 424 字节
<?php
/**
 * @remark :
 * @name   :AutoEmailLog.php
 * @author :lyh
 * @method :post
 * @time   :2024/12/30 15:31
 */

namespace App\Models\Project;

use App\Models\Base;

class AutoEmailLog extends Base
{
    protected $table = 'gl_auto_email_content_log';

    const STATUS_PENDING = 0;//待发送
    const STATUS_ON = 1;//执行中
    const STATUS_SUCCESS = 2;//执行结束
    const STATUS_ERROR = 3;//执行失败
}