mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
- 将字典类型和字典数据的获取、存储逻辑统一管理,减少重复代码 - 使用 `pinia-plugin-persistedstate` 实现字典数据的持久化存储 - 优化字典数据的展示逻辑,统一使用字典标签进行显示 - 修复字典数据查询接口的权限控制和参数传递问题 - 更新字典数据相关的测试用例,确保功能稳定
26 lines
913 B
Python
26 lines
913 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Optional
|
|
from pydantic import BaseModel, ConfigDict, Field
|
|
|
|
from app.core.base_schema import BaseSchema
|
|
|
|
|
|
class NoticeCreateSchema(BaseModel):
|
|
"""公告通知创建模型"""
|
|
notice_title: str = Field(..., max_length=50, description='公告标题')
|
|
notice_type: str = Field(..., description='公告类型(1通知 2公告)')
|
|
notice_content: str = Field(..., description='公告内容')
|
|
available: bool = Field(True, description="是否启用(True:启用 False:禁用)")
|
|
description: Optional[str] = Field(None, max_length=255, description="公告描述")
|
|
|
|
|
|
class NoticeUpdateSchema(NoticeCreateSchema):
|
|
"""公告通知更新模型"""
|
|
id: int = Field(..., gt=0, description="公告通知ID")
|
|
|
|
|
|
class NoticeOutSchema(NoticeCreateSchema, BaseSchema):
|
|
"""公告通知响应模型"""
|
|
model_config = ConfigDict(from_attributes=True)
|