1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 03:32:47 +08:00
2020-12-20 17:28:13 +08:00

161 lines
2.1 KiB
PHP

<?php
namespace App\Models;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class Consult extends Model
{
/**
* 优先级
*/
const PRIORITY_HIGH = 10; // 高
const PRIORITY_MIDDLE = 20; // 中
const PRIORITY_LOW = 30; // 低
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 课程编号
*
* @var int
*/
public $course_id;
/**
* 章节编号
*
* @var int
*/
public $chapter_id;
/**
* 提主编号
*
* @var int
*/
public $owner_id;
/**
* 答主编号
*
* @var int
*/
public $replier_id;
/**
* 提问
*
* @var string
*/
public $question;
/**
* 回答
*
* @var string
*/
public $answer;
/**
* 评分
*
* @var int
*/
public $rating;
/**
* 优先级
*
* @var int
*/
public $priority;
/**
* 私密标识
*
* @var int
*/
public $private;
/**
* 发布标识
*
* @var int
*/
public $published;
/**
* 删除标识
*
* @var int
*/
public $deleted;
/**
* 赞成数
*
* @var int
*/
public $like_count;
/**
* 回复时间
*
* @var int
*/
public $reply_time;
/**
* 创建时间
*
* @var int
*/
public $create_time;
/**
* 更新时间
*
* @var int
*/
public $update_time;
public function getSource(): string
{
return 'kg_consult';
}
public function initialize()
{
parent::initialize();
$this->addBehavior(
new SoftDelete([
'field' => 'deleted',
'value' => 1,
])
);
}
public function beforeCreate()
{
$this->create_time = time();
}
public function beforeUpdate()
{
if ($this->deleted == 1) {
$this->published = 0;
}
$this->update_time = time();
}
}