File size: 1,672 Bytes
1ef9436 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@File : product_model.py
@Time : 2024/08/30
@Project : https://github.com/PeterH0323/Streamer-Sales
@Author : HinGwenWong
@Version : 1.0
@Desc : 商品数据类型定义
"""
from datetime import datetime
from typing import List
from pydantic import BaseModel
from sqlmodel import Field, Relationship, SQLModel
# =======================================================
# 数据库模型
# =======================================================
class ProductInfo(SQLModel, table=True):
"""商品信息"""
__tablename__ = "product_info"
product_id: int | None = Field(default=None, primary_key=True, unique=True)
product_name: str = Field(index=True, unique=True)
product_class: str
heighlights: str
image_path: str
instruction: str
departure_place: str
delivery_company: str
selling_price: float
amount: int
upload_date: datetime = datetime.now()
delete: bool = False
user_id: int | None = Field(default=None, foreign_key="user_info.user_id")
sales_info: list["SalesDocAndVideoInfo"] = Relationship(back_populates="product_info")
# =======================================================
# 基本模型
# =======================================================
class ProductPageItem(BaseModel):
product_list: List[ProductInfo] = []
currentPage: int = 0 # 当前页数
pageSize: int = 0 # 页面的组件数量
totalSize: int = 0 # 总大小
class ProductQueryItem(BaseModel):
instructionPath: str = "" # 商品说明书路径,用于获取说明书内容
|