1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00

125 lines
2.0 KiB
PHP

<?php
namespace App\Models;
class Task extends Model
{
/**
* 任务类型
*/
const TYPE_DELIVER = 1; // 发货
const TYPE_REFUND = 2; // 退款
/**
* 优先级
*/
const PRIORITY_HIGH = 10; // 高
const PRIORITY_MIDDLE = 20; // 中
const PRIORITY_LOW = 30; // 低
/**
* 状态类型
*/
const STATUS_PENDING = 1; // 待定
const STATUS_FINISHED = 2; // 完成
const STATUS_CANCELED = 3; // 取消
const STATUS_FAILED = 4; // 失败
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 条目编号
*
* @var int
*/
public $item_id;
/**
* 条目类型
*
* @var int
*/
public $item_type;
/**
* 条目内容
*
* @var string|array
*/
public $item_info;
/**
* 优先级
*
* @var int
*/
public $priority;
/**
* 状态标识
*
* @var int
*/
public $status;
/**
* 重试次数
*
* @var int
*/
public $try_count;
/**
* 创建时间
*
* @var int
*/
public $create_time;
/**
* 更新时间
*
* @var int
*/
public $update_time;
public function getSource(): string
{
return 'kg_task';
}
public function beforeCreate()
{
$this->status = self::STATUS_PENDING;
if (is_array($this->item_info) && !empty($this->item_info)) {
$this->item_info = kg_json_encode($this->item_info);
}
$this->create_time = time();
}
public function beforeUpdate()
{
if (is_array($this->item_info) && !empty($this->item_info)) {
$this->item_info = kg_json_encode($this->item_info);
}
$this->update_time = time();
}
public function afterFetch()
{
if (is_string($this->item_info) && !empty($this->item_info)) {
$this->item_info = json_decode($this->item_info, true);
}
}
}