1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00
course-tencent-cloud/app/Models/ImFriendGroup.php
2021-03-18 20:12:27 +08:00

86 lines
1.2 KiB
PHP

<?php
namespace App\Models;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class ImFriendGroup extends Model
{
/**
* 主键编号
*
* @var int
*/
public $id = 0;
/**
* 名称
*
* @var string
*/
public $name = '';
/**
* 优先级
*
* @var int
*/
public $priority = 100;
/**
* 状态
*
* @var int
*/
public $deleted = 0;
/**
* 成员数
*
* @var int
*/
public $user_count = 0;
/**
* 创建时间
*
* @var int
*/
public $create_time = 0;
/**
* 更新时间
*
* @var int
*/
public $update_time = 0;
public function getSource(): string
{
return 'kg_im_friend_group';
}
public function initialize()
{
parent::initialize();
$this->addBehavior(
new SoftDelete([
'field' => 'deleted',
'value' => 1,
])
);
}
public function beforeCreate()
{
$this->create_time = time();
}
public function beforeUpdate()
{
$this->update_time = time();
}
}