|
|
@@ -8,7 +8,9 @@ use support\think\Db;
|
|
|
|
|
|
class GameRegPayDayDataReportLogic extends BaseDataReportLogic
|
|
|
{
|
|
|
- protected string $table = "game_reg_pay_day";
|
|
|
+ protected string $baseTable = "game_reg_pay_day";
|
|
|
+
|
|
|
+ protected string $table = "";
|
|
|
|
|
|
protected string $group = 'game_id, agent_id, site_id, reg_date, pay_date';
|
|
|
|
|
|
@@ -61,7 +63,7 @@ class GameRegPayDayDataReportLogic extends BaseDataReportLogic
|
|
|
|
|
|
protected function initStart(): void
|
|
|
{
|
|
|
- $this->table = $this->table . "_" . date('Y', strtotime($this->date));
|
|
|
+ $this->table = $this->baseTable . "_" . date('Y', strtotime($this->date));
|
|
|
// 重置数据
|
|
|
$this->data = [];
|
|
|
|