45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
use Hyperf\DbConnection\Model\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $spu_id
|
|
* @property string $title
|
|
* @property string $image_ids
|
|
* @property string $price
|
|
* @property string $param
|
|
* @property string $extra
|
|
* @property int $total_stock
|
|
* @property int $surplus_stock
|
|
* @property int $sales_num
|
|
* @property int $order_num
|
|
* @property int $cancel_num
|
|
* @property int $ahead_refund_num
|
|
* @property int $behind_refund_num
|
|
* @property int $saleable
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
*/
|
|
class Sku extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'sku';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'spu_id' => 'integer', 'total_stock' => 'integer', 'surplus_stock' => 'integer', 'sales_num' => 'integer', 'order_num' => 'integer', 'cancel_num' => 'integer', 'ahead_refund_num' => 'integer', 'behind_refund_num' => 'integer', 'saleable' => 'integer'];
|
|
}
|