13 lines
446 B
Python
13 lines
446 B
Python
from tortoise import fields, Model
|
|
|
|
class StockZhongZheng500(Model):
|
|
"""
|
|
中证500成分股数据
|
|
"""
|
|
symbol = fields.CharField(max_length=10, description="股票代码") # 股票代码
|
|
code = fields.CharField(max_length=10, description="股票代码") # 股票代码
|
|
name = fields.CharField(max_length=50, description="股票名称") # 股票名称
|
|
|
|
class Meta:
|
|
table = "stock_zhong_zheng_500"
|