Statistic.php 468 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Statistic extends Model
  5. {
  6. //
  7. protected $table = "statistics";
  8. protected $guarded = [];
  9. const SLUG_DEPOSIT_STATIC = "deposit_statistics"; //押金统计
  10. const SLUG_PROFIT_STATIC = "profit_statistics"; //收益统计
  11. public static $statisticsMaps = [
  12. self::SLUG_PROFIT_STATIC => '收益统计',
  13. self::SLUG_DEPOSIT_STATIC => '押金统计',
  14. ];
  15. }