love_php/app/Models/Server/MEarningRule.php

17 lines
270 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models\Server;
use Illuminate\Database\Eloquent\Model;
class MEarningRule extends Model
{
public $table = "m_earning_rules";
const DEFAULT_FIRST_SHARER = 0.3;
const DEFAULT_LAST_SHARER = 0.5;
const DEFAULT_OTHER_SHARER = 0.2;
}