mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
14 lines
283 B
Python
14 lines
283 B
Python
from typing import List
|
|
|
|
from fastapi import Body
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class LoginIn(BaseModel):
|
|
username: str = Body(..., example='long2ice')
|
|
password: str = Body(..., example='123456')
|
|
|
|
|
|
class BulkIn(BaseModel):
|
|
pk_list: List = Body(..., example=[1, 2, 3])
|