19 lines
417 B
Python
19 lines
417 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# @version : 1.0
|
||
|
# @Create Time : 2025/04/03 10:29
|
||
|
# @File : project_img_label.py
|
||
|
# @IDE : PyCharm
|
||
|
# @desc : pydantic 模型,用于数据库序列化操作
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class ProjectImgLabelIn(BaseModel):
|
||
|
label_id: int
|
||
|
mark_center_x: str
|
||
|
mark_center_y: str
|
||
|
mark_width: str
|
||
|
mark_height: str
|
||
|
|