40 lines
584 B
PHP
40 lines
584 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\store\order;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
/**
|
|
* Class StoreOrderStatus
|
|
* @package app\common\model\store\order
|
|
* @author xaboy
|
|
* @day 2020/6/12
|
|
*/
|
|
class StoreOrderStatus extends BaseModel
|
|
{
|
|
|
|
/**
|
|
* @return string|null
|
|
* @author xaboy
|
|
* @day 2020/6/12
|
|
*/
|
|
public static function tablePk(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020/6/12
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'store_order_status';
|
|
}
|
|
}
|