mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-15 19:30:50 +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])
|