29 lines
478 B
PHP
29 lines
478 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\common\model\store;
|
||
|
|
||
|
use app\common\model\BaseModel;
|
||
|
|
||
|
/**
|
||
|
* 活动订单表
|
||
|
* 目前用于拉新红包活动
|
||
|
*/
|
||
|
class StoreActivityOrder extends BaseModel
|
||
|
{
|
||
|
|
||
|
const STATUS_VALID = 1; //有效
|
||
|
const STATUS_INVALID = 0; //无效
|
||
|
const IS_FIRST_ORDER = 1; //首单
|
||
|
|
||
|
public static function tablePk(): string
|
||
|
{
|
||
|
return 'id';
|
||
|
}
|
||
|
|
||
|
public static function tableName(): string
|
||
|
{
|
||
|
return 'store_activity_order';
|
||
|
}
|
||
|
|
||
|
}
|