22 lines
300 B
PHP
22 lines
300 B
PHP
<?php
|
|
|
|
namespace app\common\model\store;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class StoreActivityUser extends BaseModel
|
|
{
|
|
|
|
public static function tablePk(): string
|
|
{
|
|
return 'id';
|
|
}
|
|
|
|
public static function tableName(): string
|
|
{
|
|
return 'store_activity_user';
|
|
}
|
|
|
|
|
|
}
|