mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
14 lines
206 B
PHP
14 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class UserMedal extends NexusModel
|
|
{
|
|
protected $fillable = ['uid', 'medal_id', 'expire_at', 'status'];
|
|
|
|
const STATUS_NOT_WEARING = 0;
|
|
const STATUS_WEARING = 1;
|
|
|
|
|
|
}
|