1234567891011121314 |
- <?php
- namespace Modules\System\Models;
- class UserNotice extends BaseModel
- {
- protected $table = 'user_notice';
- protected $fillable = [
- 'id', 'user_id', 'notice_id', 'is_deleted', 'is_read', 'created_at', 'updated_at', 'deleted_at',
- ];
- }
|