14 lines
316 B
Python
14 lines
316 B
Python
# -*- 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()
|