1
0

初始化项目

This commit is contained in:
2024-12-30 22:37:50 +08:00
commit 306ffe620d
21 changed files with 34212 additions and 0 deletions

14
0_材料准备/table.sql Normal file
View File

@@ -0,0 +1,14 @@
create table if not exists target
(
code varchar(50) not null primary key comment '编码',
name varchar(100) not null comment '名称',
description varchar(500) comment '描述',
market varchar(10) not null default '' comment '市场',
type varchar(10) not null comment '类型: stock, fund, etf'
);
create table if not exists daily
(
code varchar(50) not null comment '编码',
date date not null comment '日期'
);