1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 03:32:47 +08:00
course-tencent-cloud/app/Models/OrderStatus.php
2020-08-26 20:02:34 +08:00

47 lines
562 B
PHP

<?php
namespace App\Models;
class OrderStatus extends Model
{
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 订单编号
*
* @var int
*/
public $order_id;
/**
* 状态类型
*
* @var int
*/
public $status;
/**
* 创建时间
*
* @var int
*/
public $create_time;
public function getSource(): string
{
return 'kg_order_status';
}
public function beforeCreate()
{
$this->create_time = time();
}
}