MsgLogModel.class.php
415 Bytes
<?php
/**
* 直播消息通知记录表 (防止重复推送)
*/
namespace Common\Model;
class MsgLogModel extends AbstractModel
{
/**
* 消息类型 1: 直播前X分钟推送消息 2: 发布时推送消息提醒
*/
const TYPE_LIVE_WILL_START = 1;
const TYPE_LIVE_PUSH = 2;
/**
* 构造方法
*/
public function __construct()
{
parent::__construct();
}
}