Files
nexusphp/app/Models/Attendance.php

25 lines
429 B
PHP
Raw Normal View History

2021-06-10 21:07:20 +08:00
<?php
namespace App\Models;
class Attendance extends NexusModel
{
protected $table = 'attendance';
2021-06-13 22:21:42 +08:00
protected $fillable = ['uid', 'added', 'points', 'days', 'total_days'];
2021-06-10 21:07:20 +08:00
protected $casts = [
'added' => 'datetime',
];
2022-02-25 23:13:34 +08:00
const INITIAL_BONUS = 10;
const STEP_BONUS = 5;
const MAX_BONUS = 1000;
const CONTINUOUS_BONUS = [
10 => 200,
20 => 500,
30 => 1000
];
2021-06-10 21:07:20 +08:00
}