Files
nexusphp/app/Models/UserMedal.php

14 lines
206 B
PHP
Raw Normal View History

2022-01-19 23:54:55 +08:00
<?php
namespace App\Models;
class UserMedal extends NexusModel
{
2022-03-19 14:55:43 +08:00
protected $fillable = ['uid', 'medal_id', 'expire_at', 'status'];
const STATUS_NOT_WEARING = 0;
const STATUS_WEARING = 1;
2022-01-19 23:54:55 +08:00
}