PsycologyAPI/models/source.py

14 lines
316 B
Python
Raw Permalink Normal View History

2024-11-29 08:09:42 +00:00
# -*- coding: utf-8 -*-
# @Time : 2024/11/14 下午3:54
# @Author : 河瞬
# @FileName: source.py
# @Software: PyCharm
from tortoise.models import Model
from tortoise import fields
class Source(Model):
id = fields.IntField(primary_key=True)
name = fields.TextField()
index_url = fields.TextField()