26 lines
882 B
Python
26 lines
882 B
Python
'''
|
|
Author: caoziyuan ziyuan.cao@zhuying.com
|
|
Date: 2025-12-15 17:37:50
|
|
LastEditors: caoziyuan ziyuan.cao@zhuying.com
|
|
LastEditTime: 2025-12-22 17:25:22
|
|
FilePath: \backend\app\api\v1\module_gencode\demo\model.py
|
|
Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
'''
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from sqlalchemy import String
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.core.base_model import ModelMixin, UserMixin
|
|
|
|
|
|
class DemoModel(ModelMixin, UserMixin):
|
|
"""
|
|
示例表
|
|
"""
|
|
__tablename__: str = 'gen_demo'
|
|
__table_args__: dict[str, str] = ({'comment': '示例表'})
|
|
__loader_options__: list[str] = ["created_by", "updated_by"]
|
|
|
|
name: Mapped[str | None] = mapped_column(String(64), nullable=True, default='', comment='名称')
|