stat_inner_prediction_64.js
3.0 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
module.exports = function (sequelize, DataTypes) {
return sequelize.define('stat_inner_prediction_64', {
id: {
type: DataTypes.BIGINT,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
user_id: {
type: DataTypes.INTEGER(11),
allowNull: false
},
issue_id: {
type: DataTypes.INTEGER(11),
allowNull: false
},
issue_name: {
type: DataTypes.STRING(50),
allowNull: false
},
issue_value: {
type: DataTypes.STRING(100),
allowNull: true
},
prediction_type: {
type: DataTypes.STRING(50),
allowNull: false
},
prediction_value: {
type: DataTypes.STRING(200),
allowNull: false
},
prediction_result: {
type: DataTypes.STRING(20),
allowNull: true
},
max_win_count: {
type: DataTypes.INTEGER(11),
allowNull: true
},
win_rate: {
type: DataTypes.DECIMAL,
allowNull: true
},
created_at: {
type: DataTypes.DATE,
allowNull: false
},
current_win_count: {
type: DataTypes.INTEGER(11),
allowNull: true
},
top_10_win_rate: {
type: DataTypes.DECIMAL,
allowNull: true
},
top_20_win_rate: {
type: DataTypes.DECIMAL,
allowNull: true
},
type1: {
type: DataTypes.STRING(10),
allowNull: false
},
type2: {
type: DataTypes.STRING(10),
allowNull: false
},
type3: {
type: DataTypes.STRING(10),
allowNull: false
},
prediction_value_text: {
type: DataTypes.STRING(2000),
allowNull: true
},
lottery_id: {
type: DataTypes.INTEGER(11),
allowNull: false
},
prediction_result_text: {
type: DataTypes.STRING(200),
allowNull: true
},
top_10_result: {
type: DataTypes.STRING(2000),
allowNull: true
},
top_20_result: {
type: DataTypes.STRING(2000),
allowNull: true
},
top_n_win_rate: {
type: DataTypes.DECIMAL,
allowNull: true
},
top_n_result: {
type: DataTypes.STRING(2000),
allowNull: true
},
top_10_win_count: {
type: DataTypes.INTEGER(11),
allowNull: true
},
top_20_win_count: {
type: DataTypes.INTEGER(11),
allowNull: true
},
top_n_win_count: {
type: DataTypes.INTEGER(11),
allowNull: true
}
}, {
tableName: 'stat_inner_prediction_64'
});
};
//# sourceMappingURL=stat_inner_prediction_64.js.map