|
@@ -102,7 +102,7 @@ class Count extends Command |
|
@@ -102,7 +102,7 @@ class Count extends Command |
|
102
|
* @time :2023/6/14 15:40
|
102
|
* @time :2023/6/14 15:40
|
|
103
|
*/
|
103
|
*/
|
|
104
|
public function pv_num($yesterday,$domain){
|
104
|
public function pv_num($yesterday,$domain){
|
|
105
|
- $pv = DB::connection('custom_mysql')->table('gl_customer_visit_item')->whereDate('updated_date', $yesterday)->where('domain',$domain)->count();
|
105
|
+ $pv = DB::connection('custom_mysql')->table('gl_customer_visit_item')->whereDate('updated_date', $yesterday)->count();
|
|
106
|
return $pv;
|
106
|
return $pv;
|
|
107
|
}
|
107
|
}
|
|
108
|
|
108
|
|
|
@@ -113,7 +113,7 @@ class Count extends Command |
|
@@ -113,7 +113,7 @@ class Count extends Command |
|
113
|
* @time :2023/6/14 15:40
|
113
|
* @time :2023/6/14 15:40
|
|
114
|
*/
|
114
|
*/
|
|
115
|
public function ip_num($yesterday,$domain){
|
115
|
public function ip_num($yesterday,$domain){
|
|
116
|
- $ip = DB::connection('custom_mysql')->table('gl_customer_visit')->whereDate('updated_date', $yesterday)->where('domain',$domain)->count();
|
116
|
+ $ip = DB::connection('custom_mysql')->table('gl_customer_visit')->whereDate('updated_date', $yesterday)->count();
|
|
117
|
return $ip;
|
117
|
return $ip;
|
|
118
|
}
|
118
|
}
|
|
119
|
|
119
|
|