ms_soccer_base_surface.ts
3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/* jshint indent: 2 */
module.exports = function (sequelize: any, DataTypes: any) {
return sequelize.define('ms_soccer_base_surface', {
id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
autoIncrement: true
},
yiqiu_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
unique: true
},
sport_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
unique: true
},
home_team_id: {
type: DataTypes.INTEGER(11),
allowNull: true
},
away_team_id: {
type: DataTypes.INTEGER(11),
allowNull: true
},
match_time: {
type: DataTypes.STRING(100),
allowNull: true
},
competition_id: {
type: DataTypes.INTEGER(11),
allowNull: true
},
competition_name: {
type: DataTypes.STRING(200),
allowNull: true
},
home_name: {
type: DataTypes.STRING(200),
allowNull: true
},
away_name: {
type: DataTypes.STRING(200),
allowNull: true
},
week_day: {
type: DataTypes.STRING(20),
allowNull: true
},
home_point: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
},
away_point: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
},
home_rank: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
},
away_rank: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
},
is_jingcai: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
},
is_beidan: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
},
issue_name_jc: {
type: DataTypes.STRING(100),
allowNull: true
},
issue_name_bd: {
type: DataTypes.STRING(100),
allowNull: true
},
radar_chart_data: {
type: DataTypes.JSON,
allowNull: true
},
status_analysis: {
type: DataTypes.JSON,
allowNull: true
},
point_rank_message: {
type: DataTypes.JSON,
allowNull: true
},
point_rank_trend: {
type: DataTypes.JSON,
allowNull: true
},
result_analysis: {
type: DataTypes.JSON,
allowNull: true
},
ah_odd_analysis: {
type: DataTypes.JSON,
allowNull: true
},
hda_kelly_odd: {
type: DataTypes.JSON,
allowNull: true
},
hda_changes_total: {
type: DataTypes.JSON,
allowNull: true
},
hda_analysis: {
type: DataTypes.JSON,
allowNull: true
},
score: {
type: DataTypes.STRING(20),
allowNull: true
},
letball: {
type: DataTypes.STRING(20),
allowNull: true
},
half: {
type: DataTypes.STRING(20),
allowNull: true
},
match_result: {
type: DataTypes.JSON,
allowNull: true
},
predict_result: {
type: DataTypes.JSON,
allowNull: true
},
same_odds_result: {
type: DataTypes.JSON,
allowNull: true
},
match_num: {
type: DataTypes.STRING(20),
allowNull: true
},
handicap: {
type: DataTypes.STRING(20),
allowNull: true,
defaultValue: '0'
},
}, {
tableName: 'ms_soccer_base_surface'
});
};