作者 lyh

gx

@@ -15,7 +15,7 @@ class CountController extends BaseController @@ -15,7 +15,7 @@ class CountController extends BaseController
15 { 15 {
16 const STATUS_ERROR = 400; 16 const STATUS_ERROR = 400;
17 /** 17 /**
18 - * @name :(昨日统计数据)yesterday_count 18 + * @name :(首页数据统计)yesterday_count
19 * @author :lyh 19 * @author :lyh
20 * @method :post 20 * @method :post
21 * @time :2023/5/23 17:23 21 * @time :2023/5/23 17:23
  1 +<?php
  2 +
  3 +namespace App\Models\HomeCount;
  4 +
  5 +use App\Models\Base;
  6 +
  7 +
  8 +class MonthCount extends Base
  9 +{
  10 + protected $table = 'gl_month_count';
  11 +}