AIQT论坛

 找回密码
 立即注册
查看: 9942|回复: 9

AI球探--数据结构存量一览(完结)

[复制链接]

78

主题

162

帖子

1万

积分

管理员

Rank: 1

积分
11531

荣誉管理论坛元老

发表于 2021-8-10 11:46:57 | 显示全部楼层 |阅读模式

没有永恒制胜的策略,加入我们,一起加油!

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
整体数据同步完成.其中每场比赛的当前积分榜,当前两队对战历史,当前两队近30+场战绩,当前未来赛事,必发数据 均己完结.
数据多还蛮充实,相比以前只用近三年数据好多了.

数据库表列表.
1.png
数据库视图列表.
2.png



SELECT
"亚赔",
DATE_FORMAT(mh.`MatchDate`, '%Y') AS '年份',
COUNT(1) AS "数据行数"
FROM
t_match_his mh
INNER JOIN t_asia_full af
  ON mh.id = af.matchId
WHERE 1=1
GROUP BY DATE_FORMAT(mh.`MatchDate`, '%Y')
ORDER BY DATE_FORMAT(mh.`MatchDate`, '%Y')
1.png
结构体数据结构
  1. package pojo

  2. import (
  3.         "fooy-parent/common/base/pojo"
  4.         "time"
  5. )

  6. /**
  7. 亚赔全场数据表,初终盘
  8. */
  9. type AsiaFull struct {
  10.         //比赛id
  11.         MatchId string `xorm:" varchar(20) index"`
  12.         //比赛时间
  13.         MatchDate time.Time `xorm:" comment('MatchDate') index"`
  14.         //数据时间
  15.         OddDate string `xorm:" comment('数据时间') index varchar(20)"`

  16.         //1,1澳门
  17.         C1_Sp3     float64 `xorm:" comment('Sp3') index"`
  18.         C1_SPanKou float64 `xorm:" comment('s让球') index"`
  19.         C1_Sp0     float64 `xorm:" comment('Sp0') index"`
  20.         C1_Ep3     float64 `xorm:" comment('Ep3') "`
  21.         C1_EPanKou float64 `xorm:" comment('e让球') "`
  22.         C1_Ep0     float64 `xorm:" comment('Ep0') "`
  23.         //12,12易胜博
  24.         C12_Sp3     float64 `xorm:" comment('Sp3') index"`
  25.         C12_SPanKou float64 `xorm:" comment('s让球') index"`
  26.         C12_Sp0     float64 `xorm:" comment('Sp0') index"`
  27.         C12_Ep3     float64 `xorm:" comment('Ep3') "`
  28.         C12_EPanKou float64 `xorm:" comment('e让球') "`
  29.         C12_Ep0     float64 `xorm:" comment('Ep0') "`
  30.         //14,14韦德
  31.         C14_Sp3     float64 `xorm:" comment('Sp3') index"`
  32.         C14_SPanKou float64 `xorm:" comment('s让球') index"`
  33.         C14_Sp0     float64 `xorm:" comment('Sp0') index"`
  34.         C14_Ep3     float64 `xorm:" comment('Ep3') "`
  35.         C14_EPanKou float64 `xorm:" comment('e让球') "`
  36.         C14_Ep0     float64 `xorm:" comment('Ep0') "`
  37.         //17,17明陞
  38.         C17_Sp3     float64 `xorm:" comment('Sp3') index"`
  39.         C17_SPanKou float64 `xorm:" comment('s让球') index"`
  40.         C17_Sp0     float64 `xorm:" comment('Sp0') index"`
  41.         C17_Ep3     float64 `xorm:" comment('Ep3') "`
  42.         C17_EPanKou float64 `xorm:" comment('e让球') "`
  43.         C17_Ep0     float64 `xorm:" comment('Ep0') "`
  44.         //19,19Interwetten
  45.         C19_Sp3     float64 `xorm:" comment('Sp3') index"`
  46.         C19_SPanKou float64 `xorm:" comment('s让球') index"`
  47.         C19_Sp0     float64 `xorm:" comment('Sp0') index"`
  48.         C19_Ep3     float64 `xorm:" comment('Ep3') "`
  49.         C19_EPanKou float64 `xorm:" comment('e让球') "`
  50.         C19_Ep0     float64 `xorm:" comment('Ep0') "`
  51.         //22,2210BET
  52.         C22_Sp3     float64 `xorm:" comment('Sp3') index"`
  53.         C22_SPanKou float64 `xorm:" comment('s让球') index"`
  54.         C22_Sp0     float64 `xorm:" comment('Sp0') index"`
  55.         C22_Ep3     float64 `xorm:" comment('Ep3') "`
  56.         C22_EPanKou float64 `xorm:" comment('e让球') "`
  57.         C22_Ep0     float64 `xorm:" comment('Ep0') "`
  58.         //23,23金宝博
  59.         C23_Sp3     float64 `xorm:" comment('Sp3') index"`
  60.         C23_SPanKou float64 `xorm:" comment('s让球') index"`
  61.         C23_Sp0     float64 `xorm:" comment('Sp0') index"`
  62.         C23_Ep3     float64 `xorm:" comment('Ep3') "`
  63.         C23_EPanKou float64 `xorm:" comment('e让球') "`
  64.         C23_Ep0     float64 `xorm:" comment('Ep0') "`
  65.         //24,2412bet
  66.         C24_Sp3     float64 `xorm:" comment('Sp3') index"`
  67.         C24_SPanKou float64 `xorm:" comment('s让球') index"`
  68.         C24_Sp0     float64 `xorm:" comment('Sp0') index"`
  69.         C24_Ep3     float64 `xorm:" comment('Ep3') "`
  70.         C24_EPanKou float64 `xorm:" comment('e让球') "`
  71.         C24_Ep0     float64 `xorm:" comment('Ep0') "`
  72.         //3,3Crown
  73.         C3_Sp3     float64 `xorm:" comment('Sp3') index"`
  74.         C3_SPanKou float64 `xorm:" comment('s让球') index"`
  75.         C3_Sp0     float64 `xorm:" comment('Sp0') index"`
  76.         C3_Ep3     float64 `xorm:" comment('Ep3') "`
  77.         C3_EPanKou float64 `xorm:" comment('e让球') "`
  78.         C3_Ep0     float64 `xorm:" comment('Ep0') "`
  79.         //31,31利记
  80.         C31_Sp3     float64 `xorm:" comment('Sp3') index"`
  81.         C31_SPanKou float64 `xorm:" comment('s让球') index"`
  82.         C31_Sp0     float64 `xorm:" comment('Sp0') index"`
  83.         C31_Ep3     float64 `xorm:" comment('Ep3') "`
  84.         C31_EPanKou float64 `xorm:" comment('e让球') "`
  85.         C31_Ep0     float64 `xorm:" comment('Ep0') "`
  86.         //35,35盈禾
  87.         C35_Sp3     float64 `xorm:" comment('Sp3') index"`
  88.         C35_SPanKou float64 `xorm:" comment('s让球') index"`
  89.         C35_Sp0     float64 `xorm:" comment('Sp0') index"`
  90.         C35_Ep3     float64 `xorm:" comment('Ep3') "`
  91.         C35_EPanKou float64 `xorm:" comment('e让球') "`
  92.         C35_Ep0     float64 `xorm:" comment('Ep0') "`
  93.         //4,4立博
  94.         C4_Sp3     float64 `xorm:" comment('Sp3') index"`
  95.         C4_SPanKou float64 `xorm:" comment('s让球') index"`
  96.         C4_Sp0     float64 `xorm:" comment('Sp0') index"`
  97.         C4_Ep3     float64 `xorm:" comment('Ep3') "`
  98.         C4_EPanKou float64 `xorm:" comment('e让球') "`
  99.         C4_Ep0     float64 `xorm:" comment('Ep0') "`
  100.         //42,4218Bet
  101.         C42_Sp3     float64 `xorm:" comment('Sp3') index"`
  102.         C42_SPanKou float64 `xorm:" comment('s让球') index"`
  103.         C42_Sp0     float64 `xorm:" comment('Sp0') index"`
  104.         C42_Ep3     float64 `xorm:" comment('Ep3') "`
  105.         C42_EPanKou float64 `xorm:" comment('e让球') "`
  106.         C42_Ep0     float64 `xorm:" comment('Ep0') "`
  107.         //47,47平博
  108.         C47_Sp3     float64 `xorm:" comment('Sp3') index"`
  109.         C47_SPanKou float64 `xorm:" comment('s让球') index"`
  110.         C47_Sp0     float64 `xorm:" comment('Sp0') index"`
  111.         C47_Ep3     float64 `xorm:" comment('Ep3') "`
  112.         C47_EPanKou float64 `xorm:" comment('e让球') "`
  113.         C47_Ep0     float64 `xorm:" comment('Ep0') "`
  114.         //48,48香港马会
  115.         C48_Sp3     float64 `xorm:" comment('Sp3') index"`
  116.         C48_SPanKou float64 `xorm:" comment('s让球') index"`
  117.         C48_Sp0     float64 `xorm:" comment('Sp0') index"`
  118.         C48_Ep3     float64 `xorm:" comment('Ep3') "`
  119.         C48_EPanKou float64 `xorm:" comment('e让球') "`
  120.         C48_Ep0     float64 `xorm:" comment('Ep0') "`
  121.         //49,49BWin
  122.         C49_Sp3     float64 `xorm:" comment('Sp3') index"`
  123.         C49_SPanKou float64 `xorm:" comment('s让球') index"`
  124.         C49_Sp0     float64 `xorm:" comment('Sp0') index"`
  125.         C49_Ep3     float64 `xorm:" comment('Ep3') "`
  126.         C49_EPanKou float64 `xorm:" comment('e让球') "`
  127.         C49_Ep0     float64 `xorm:" comment('Ep0') "`
  128.         //8,8Bet365
  129.         C8_Sp3     float64 `xorm:" comment('Sp3') index"`
  130.         C8_SPanKou float64 `xorm:" comment('s让球') index"`
  131.         C8_Sp0     float64 `xorm:" comment('Sp0') index"`
  132.         C8_Ep3     float64 `xorm:" comment('Ep3') "`
  133.         C8_EPanKou float64 `xorm:" comment('e让球') "`
  134.         C8_Ep0     float64 `xorm:" comment('Ep0') "`


  135.         pojo.BasePojo `xorm:"extends"`
  136. }
复制代码




SELECT
"欧赔",
DATE_FORMAT(mh.`MatchDate`, '%Y') AS '年份',
COUNT(1) AS "数据行数"
FROM
t_match_his mh
INNER JOIN t_euro_full af
  ON mh.id = af.matchId
WHERE 1=1
GROUP BY DATE_FORMAT(mh.`MatchDate`, '%Y')
ORDER BY DATE_FORMAT(mh.`MatchDate`, '%Y')
2.png
结构体数据结构
  1. package pojo

  2. import (
  3.         "fooy-parent/common/base/pojo"
  4.         "time"
  5. )

  6. /**
  7. 亚赔全场数据表,初终盘
  8. */
  9. type EuroFull struct {
  10.         //比赛id
  11.         MatchId string `xorm:" varchar(20) index"`
  12.         //比赛时间
  13.         MatchDate time.Time `xorm:" comment('MatchDate') index"`
  14.         //数据时间
  15.         OddDate string `xorm:" comment('数据时间') index varchar(20)"`

  16.         /**
  17.         初盘胜平负赔率
  18.         */
  19.         //104Interwetten
  20.         C104_Sp3     float64 `xorm:" comment('Sp3') index"`
  21.         C104_Sp1     float64 `xorm:" comment('Sp1') "`
  22.         C104_Sp0     float64 `xorm:" comment('Sp0') index"`
  23.         C104_SPayout float64 `xorm:" comment('初赔付率') "`
  24.         C104_Ep3     float64 `xorm:" comment('Ep3') "`
  25.         C104_Ep1     float64 `xorm:" comment('Ep1') "`
  26.         C104_Ep0     float64 `xorm:" comment('Ep0') "`
  27.         C104_EPayout float64 `xorm:" comment('终赔付率') "`
  28.         C104_Kelly3  float64 `xorm:" comment('Kelly3') "`
  29.         C104_Kelly1  float64 `xorm:" comment('Kelly1') "`
  30.         C104_Kelly0  float64 `xorm:" comment('Kelly0') "`
  31.         //110SNAI
  32.         C110_Sp3     float64 `xorm:" comment('Sp3') index"`
  33.         C110_Sp1     float64 `xorm:" comment('Sp1') "`
  34.         C110_Sp0     float64 `xorm:" comment('Sp0') index"`
  35.         C110_SPayout float64 `xorm:" comment('初赔付率') "`
  36.         C110_Ep3     float64 `xorm:" comment('Ep3') "`
  37.         C110_Ep1     float64 `xorm:" comment('Ep1') "`
  38.         C110_Ep0     float64 `xorm:" comment('Ep0') "`
  39.         C110_EPayout float64 `xorm:" comment('终赔付率') "`
  40.         C110_Kelly3  float64 `xorm:" comment('Kelly3') "`
  41.         C110_Kelly1  float64 `xorm:" comment('Kelly1') "`
  42.         C110_Kelly0  float64 `xorm:" comment('Kelly0') "`
  43.         //1129竞彩官方
  44.         C1129_Sp3     float64 `xorm:" comment('Sp3') index"`
  45.         C1129_Sp1     float64 `xorm:" comment('Sp1') "`
  46.         C1129_Sp0     float64 `xorm:" comment('Sp0') "`
  47.         C1129_SPayout float64 `xorm:" comment('初赔付率') "`
  48.         C1129_Ep3     float64 `xorm:" comment('Ep3') "`
  49.         C1129_Ep1     float64 `xorm:" comment('Ep1') "`
  50.         C1129_Ep0     float64 `xorm:" comment('Ep0') "`
  51.         C1129_EPayout float64 `xorm:" comment('终赔付率') "`
  52.         C1129_Kelly3  float64 `xorm:" comment('Kelly3') "`
  53.         C1129_Kelly1  float64 `xorm:" comment('Kelly1') "`
  54.         C1129_Kelly0  float64 `xorm:" comment('Kelly0') "`
  55.         //115威廉希尔
  56.         C115_Sp3     float64 `xorm:" comment('Sp3') index"`
  57.         C115_Sp1     float64 `xorm:" comment('Sp1') "`
  58.         C115_Sp0     float64 `xorm:" comment('Sp0') index"`
  59.         C115_SPayout float64 `xorm:" comment('初赔付率') "`
  60.         C115_Ep3     float64 `xorm:" comment('Ep3') "`
  61.         C115_Ep1     float64 `xorm:" comment('Ep1') "`
  62.         C115_Ep0     float64 `xorm:" comment('Ep0') "`
  63.         C115_EPayout float64 `xorm:" comment('终赔付率') "`
  64.         C115_Kelly3  float64 `xorm:" comment('Kelly3') "`
  65.         C115_Kelly1  float64 `xorm:" comment('Kelly1') "`
  66.         C115_Kelly0  float64 `xorm:" comment('Kelly0') "`
  67.         //158Gamebookers
  68.         C158_Sp3     float64 `xorm:" comment('Sp3') index"`
  69.         C158_Sp1     float64 `xorm:" comment('Sp1') "`
  70.         C158_Sp0     float64 `xorm:" comment('Sp0') "`
  71.         C158_SPayout float64 `xorm:" comment('初赔付率') "`
  72.         C158_Ep3     float64 `xorm:" comment('Ep3') "`
  73.         C158_Ep1     float64 `xorm:" comment('Ep1') "`
  74.         C158_Ep0     float64 `xorm:" comment('Ep0') "`
  75.         C158_EPayout float64 `xorm:" comment('终赔付率') "`
  76.         C158_Kelly3  float64 `xorm:" comment('Kelly3') "`
  77.         C158_Kelly1  float64 `xorm:" comment('Kelly1') "`
  78.         C158_Kelly0  float64 `xorm:" comment('Kelly0') "`
  79.         //1610BET
  80.         C16_Sp3     float64 `xorm:" comment('Sp3') index"`
  81.         C16_Sp1     float64 `xorm:" comment('Sp1') "`
  82.         C16_Sp0     float64 `xorm:" comment('Sp0') index"`
  83.         C16_SPayout float64 `xorm:" comment('初赔付率') "`
  84.         C16_Ep3     float64 `xorm:" comment('Ep3') "`
  85.         C16_Ep1     float64 `xorm:" comment('Ep1') "`
  86.         C16_Ep0     float64 `xorm:" comment('Ep0') "`
  87.         C16_EPayout float64 `xorm:" comment('终赔付率') "`
  88.         C16_Kelly3  float64 `xorm:" comment('Kelly3') "`
  89.         C16_Kelly1  float64 `xorm:" comment('Kelly1') "`
  90.         C16_Kelly0  float64 `xorm:" comment('Kelly0') "`
  91.         //173bet-at-home
  92.         C173_Sp3     float64 `xorm:" comment('Sp3') index"`
  93.         C173_Sp1     float64 `xorm:" comment('Sp1') "`
  94.         C173_Sp0     float64 `xorm:" comment('Sp0') "`
  95.         C173_SPayout float64 `xorm:" comment('初赔付率') "`
  96.         C173_Ep3     float64 `xorm:" comment('Ep3') "`
  97.         C173_Ep1     float64 `xorm:" comment('Ep1') "`
  98.         C173_Ep0     float64 `xorm:" comment('Ep0') "`
  99.         C173_EPayout float64 `xorm:" comment('终赔付率') "`
  100.         C173_Kelly3  float64 `xorm:" comment('Kelly3') "`
  101.         C173_Kelly1  float64 `xorm:" comment('Kelly1') "`
  102.         C173_Kelly0  float64 `xorm:" comment('Kelly0') "`
  103.         //177Pinnacle
  104.         C177_Sp3     float64 `xorm:" comment('Sp3') index"`
  105.         C177_Sp1     float64 `xorm:" comment('Sp1') "`
  106.         C177_Sp0     float64 `xorm:" comment('Sp0') index"`
  107.         C177_SPayout float64 `xorm:" comment('初赔付率') "`
  108.         C177_Ep3     float64 `xorm:" comment('Ep3') "`
  109.         C177_Ep1     float64 `xorm:" comment('Ep1') "`
  110.         C177_Ep0     float64 `xorm:" comment('Ep0') "`
  111.         C177_EPayout float64 `xorm:" comment('终赔付率') "`
  112.         C177_Kelly3  float64 `xorm:" comment('Kelly3') "`
  113.         C177_Kelly1  float64 `xorm:" comment('Kelly1') "`
  114.         C177_Kelly0  float64 `xorm:" comment('Kelly0') "`
  115.         //1812BET
  116.         C18_Sp3     float64 `xorm:" comment('Sp3') index"`
  117.         C18_Sp1     float64 `xorm:" comment('Sp1') "`
  118.         C18_Sp0     float64 `xorm:" comment('Sp0') "`
  119.         C18_SPayout float64 `xorm:" comment('初赔付率') "`
  120.         C18_Ep3     float64 `xorm:" comment('Ep3') "`
  121.         C18_Ep1     float64 `xorm:" comment('Ep1') "`
  122.         C18_Ep0     float64 `xorm:" comment('Ep0') "`
  123.         C18_EPayout float64 `xorm:" comment('终赔付率') "`
  124.         C18_Kelly3  float64 `xorm:" comment('Kelly3') "`
  125.         C18_Kelly1  float64 `xorm:" comment('Kelly1') "`
  126.         C18_Kelly0  float64 `xorm:" comment('Kelly0') "`
  127.         //2Betfair
  128.         C2_Sp3     float64 `xorm:" comment('Sp3') index"`
  129.         C2_Sp1     float64 `xorm:" comment('Sp1') "`
  130.         C2_Sp0     float64 `xorm:" comment('Sp0') "`
  131.         C2_SPayout float64 `xorm:" comment('初赔付率') "`
  132.         C2_Ep3     float64 `xorm:" comment('Ep3') "`
  133.         C2_Ep1     float64 `xorm:" comment('Ep1') "`
  134.         C2_Ep0     float64 `xorm:" comment('Ep0') "`
  135.         C2_EPayout float64 `xorm:" comment('终赔付率') "`
  136.         C2_Kelly3  float64 `xorm:" comment('Kelly3') "`
  137.         C2_Kelly1  float64 `xorm:" comment('Kelly1') "`
  138.         C2_Kelly0  float64 `xorm:" comment('Kelly0') "`
  139.         //255Bwin
  140.         C255_Sp3     float64 `xorm:" comment('Sp3') index"`
  141.         C255_Sp1     float64 `xorm:" comment('Sp1') "`
  142.         C255_Sp0     float64 `xorm:" comment('Sp0') "`
  143.         C255_SPayout float64 `xorm:" comment('初赔付率') "`
  144.         C255_Ep3     float64 `xorm:" comment('Ep3') "`
  145.         C255_Ep1     float64 `xorm:" comment('Ep1') "`
  146.         C255_Ep0     float64 `xorm:" comment('Ep0') "`
  147.         C255_EPayout float64 `xorm:" comment('终赔付率') "`
  148.         C255_Kelly3  float64 `xorm:" comment('Kelly3') "`
  149.         C255_Kelly1  float64 `xorm:" comment('Kelly1') "`
  150.         C255_Kelly0  float64 `xorm:" comment('Kelly0') "`
  151.         //281Bet365
  152.         C281_Sp3     float64 `xorm:" comment('Sp3') index"`
  153.         C281_Sp1     float64 `xorm:" comment('Sp1') "`
  154.         C281_Sp0     float64 `xorm:" comment('Sp0') index"`
  155.         C281_SPayout float64 `xorm:" comment('初赔付率') "`
  156.         C281_Ep3     float64 `xorm:" comment('Ep3') "`
  157.         C281_Ep1     float64 `xorm:" comment('Ep1') "`
  158.         C281_Ep0     float64 `xorm:" comment('Ep0') "`
  159.         C281_EPayout float64 `xorm:" comment('终赔付率') "`
  160.         C281_Kelly3  float64 `xorm:" comment('Kelly3') "`
  161.         C281_Kelly1  float64 `xorm:" comment('Kelly1') "`
  162.         C281_Kelly0  float64 `xorm:" comment('Kelly0') "`
  163.         //33Redbet
  164.         C33_Sp3     float64 `xorm:" comment('Sp3') index"`
  165.         C33_Sp1     float64 `xorm:" comment('Sp1') "`
  166.         C33_Sp0     float64 `xorm:" comment('Sp0') "`
  167.         C33_SPayout float64 `xorm:" comment('初赔付率') "`
  168.         C33_Ep3     float64 `xorm:" comment('Ep3') "`
  169.         C33_Ep1     float64 `xorm:" comment('Ep1') "`
  170.         C33_Ep0     float64 `xorm:" comment('Ep0') "`
  171.         C33_EPayout float64 `xorm:" comment('终赔付率') "`
  172.         C33_Kelly3  float64 `xorm:" comment('Kelly3') "`
  173.         C33_Kelly1  float64 `xorm:" comment('Kelly1') "`
  174.         C33_Kelly0  float64 `xorm:" comment('Kelly0') "`
  175.         //352Matchbook
  176.         C352_Sp3     float64 `xorm:" comment('Sp3') index"`
  177.         C352_Sp1     float64 `xorm:" comment('Sp1') "`
  178.         C352_Sp0     float64 `xorm:" comment('Sp0') "`
  179.         C352_SPayout float64 `xorm:" comment('初赔付率') "`
  180.         C352_Ep3     float64 `xorm:" comment('Ep3') "`
  181.         C352_Ep1     float64 `xorm:" comment('Ep1') "`
  182.         C352_Ep0     float64 `xorm:" comment('Ep0') "`
  183.         C352_EPayout float64 `xorm:" comment('终赔付率') "`
  184.         C352_Kelly3  float64 `xorm:" comment('Kelly3') "`
  185.         C352_Kelly1  float64 `xorm:" comment('Kelly1') "`
  186.         C352_Kelly0  float64 `xorm:" comment('Kelly0') "`
  187.         //370Oddset
  188.         C370_Sp3     float64 `xorm:" comment('Sp3') index"`
  189.         C370_Sp1     float64 `xorm:" comment('Sp1') "`
  190.         C370_Sp0     float64 `xorm:" comment('Sp0') index"`
  191.         C370_SPayout float64 `xorm:" comment('初赔付率') "`
  192.         C370_Ep3     float64 `xorm:" comment('Ep3') "`
  193.         C370_Ep1     float64 `xorm:" comment('Ep1') "`
  194.         C370_Ep0     float64 `xorm:" comment('Ep0') "`
  195.         C370_EPayout float64 `xorm:" comment('终赔付率') "`
  196.         C370_Kelly3  float64 `xorm:" comment('Kelly3') "`
  197.         C370_Kelly1  float64 `xorm:" comment('Kelly1') "`
  198.         C370_Kelly0  float64 `xorm:" comment('Kelly0') "`
  199.         //4Nordicbet
  200.         C4_Sp3     float64 `xorm:" comment('Sp3') index"`
  201.         C4_Sp1     float64 `xorm:" comment('Sp1') "`
  202.         C4_Sp0     float64 `xorm:" comment('Sp0') "`
  203.         C4_SPayout float64 `xorm:" comment('初赔付率') "`
  204.         C4_Ep3     float64 `xorm:" comment('Ep3') "`
  205.         C4_Ep1     float64 `xorm:" comment('Ep1') "`
  206.         C4_Ep0     float64 `xorm:" comment('Ep0') "`
  207.         C4_EPayout float64 `xorm:" comment('终赔付率') "`
  208.         C4_Kelly3  float64 `xorm:" comment('Kelly3') "`
  209.         C4_Kelly1  float64 `xorm:" comment('Kelly1') "`
  210.         C4_Kelly0  float64 `xorm:" comment('Kelly0') "`
  211.         //422博天堂
  212.         C422_Sp3     float64 `xorm:" comment('Sp3') index"`
  213.         C422_Sp1     float64 `xorm:" comment('Sp1') "`
  214.         C422_Sp0     float64 `xorm:" comment('Sp0') "`
  215.         C422_SPayout float64 `xorm:" comment('初赔付率') "`
  216.         C422_Ep3     float64 `xorm:" comment('Ep3') "`
  217.         C422_Ep1     float64 `xorm:" comment('Ep1') "`
  218.         C422_Ep0     float64 `xorm:" comment('Ep0') "`
  219.         C422_EPayout float64 `xorm:" comment('终赔付率') "`
  220.         C422_Kelly3  float64 `xorm:" comment('Kelly3') "`
  221.         C422_Kelly1  float64 `xorm:" comment('Kelly1') "`
  222.         C422_Kelly0  float64 `xorm:" comment('Kelly0') "`
  223.         //432香港马会
  224.         C432_Sp3     float64 `xorm:" comment('Sp3') index"`
  225.         C432_Sp1     float64 `xorm:" comment('Sp1') "`
  226.         C432_Sp0     float64 `xorm:" comment('Sp0') "`
  227.         C432_SPayout float64 `xorm:" comment('初赔付率') "`
  228.         C432_Ep3     float64 `xorm:" comment('Ep3') "`
  229.         C432_Ep1     float64 `xorm:" comment('Ep1') "`
  230.         C432_Ep0     float64 `xorm:" comment('Ep0') "`
  231.         C432_EPayout float64 `xorm:" comment('终赔付率') "`
  232.         C432_Kelly3  float64 `xorm:" comment('Kelly3') "`
  233.         C432_Kelly1  float64 `xorm:" comment('Kelly1') "`
  234.         C432_Kelly0  float64 `xorm:" comment('Kelly0') "`
  235.         //450TOTO
  236.         C450_Sp3     float64 `xorm:" comment('Sp3') index"`
  237.         C450_Sp1     float64 `xorm:" comment('Sp1') "`
  238.         C450_Sp0     float64 `xorm:" comment('Sp0') "`
  239.         C450_SPayout float64 `xorm:" comment('初赔付率') "`
  240.         C450_Ep3     float64 `xorm:" comment('Ep3') "`
  241.         C450_Ep1     float64 `xorm:" comment('Ep1') "`
  242.         C450_Ep0     float64 `xorm:" comment('Ep0') "`
  243.         C450_EPayout float64 `xorm:" comment('终赔付率') "`
  244.         C450_Kelly3  float64 `xorm:" comment('Kelly3') "`
  245.         C450_Kelly1  float64 `xorm:" comment('Kelly1') "`
  246.         C450_Kelly0  float64 `xorm:" comment('Kelly0') "`
  247.         //474利记sbobet
  248.         C474_Sp3     float64 `xorm:" comment('Sp3') index"`
  249.         C474_Sp1     float64 `xorm:" comment('Sp1') "`
  250.         C474_Sp0     float64 `xorm:" comment('Sp0') "`
  251.         C474_SPayout float64 `xorm:" comment('初赔付率') "`
  252.         C474_Ep3     float64 `xorm:" comment('Ep3') "`
  253.         C474_Ep1     float64 `xorm:" comment('Ep1') "`
  254.         C474_Ep0     float64 `xorm:" comment('Ep0') "`
  255.         C474_EPayout float64 `xorm:" comment('终赔付率') "`
  256.         C474_Kelly3  float64 `xorm:" comment('Kelly3') "`
  257.         C474_Kelly1  float64 `xorm:" comment('Kelly1') "`
  258.         C474_Kelly0  float64 `xorm:" comment('Kelly0') "`
  259.         //499金宝博
  260.         C499_Sp3     float64 `xorm:" comment('Sp3') index"`
  261.         C499_Sp1     float64 `xorm:" comment('Sp1') "`
  262.         C499_Sp0     float64 `xorm:" comment('Sp0') index"`
  263.         C499_SPayout float64 `xorm:" comment('初赔付率') "`
  264.         C499_Ep3     float64 `xorm:" comment('Ep3') "`
  265.         C499_Ep1     float64 `xorm:" comment('Ep1') "`
  266.         C499_Ep0     float64 `xorm:" comment('Ep0') "`
  267.         C499_EPayout float64 `xorm:" comment('终赔付率') "`
  268.         C499_Kelly3  float64 `xorm:" comment('Kelly3') "`
  269.         C499_Kelly1  float64 `xorm:" comment('Kelly1') "`
  270.         C499_Kelly0  float64 `xorm:" comment('Kelly0') "`
  271.         //517明陞
  272.         C517_Sp3     float64 `xorm:" comment('Sp3') index"`
  273.         C517_Sp1     float64 `xorm:" comment('Sp1') "`
  274.         C517_Sp0     float64 `xorm:" comment('Sp0') index"`
  275.         C517_SPayout float64 `xorm:" comment('初赔付率') "`
  276.         C517_Ep3     float64 `xorm:" comment('Ep3') "`
  277.         C517_Ep1     float64 `xorm:" comment('Ep1') "`
  278.         C517_Ep0     float64 `xorm:" comment('Ep0') "`
  279.         C517_EPayout float64 `xorm:" comment('终赔付率') "`
  280.         C517_Kelly3  float64 `xorm:" comment('Kelly3') "`
  281.         C517_Kelly1  float64 `xorm:" comment('Kelly1') "`
  282.         C517_Kelly0  float64 `xorm:" comment('Kelly0') "`
  283.         //54BETDAQ
  284.         C54_Sp3     float64 `xorm:" comment('Sp3') index"`
  285.         C54_Sp1     float64 `xorm:" comment('Sp1') "`
  286.         C54_Sp0     float64 `xorm:" comment('Sp0') "`
  287.         C54_SPayout float64 `xorm:" comment('初赔付率') "`
  288.         C54_Ep3     float64 `xorm:" comment('Ep3') "`
  289.         C54_Ep1     float64 `xorm:" comment('Ep1') "`
  290.         C54_Ep0     float64 `xorm:" comment('Ep0') "`
  291.         C54_EPayout float64 `xorm:" comment('终赔付率') "`
  292.         C54_Kelly3  float64 `xorm:" comment('Kelly3') "`
  293.         C54_Kelly1  float64 `xorm:" comment('Kelly1') "`
  294.         C54_Kelly0  float64 `xorm:" comment('Kelly0') "`
  295.         //545Crown
  296.         C545_Sp3     float64 `xorm:" comment('Sp3') index"`
  297.         C545_Sp1     float64 `xorm:" comment('Sp1') "`
  298.         C545_Sp0     float64 `xorm:" comment('Sp0') index"`
  299.         C545_SPayout float64 `xorm:" comment('初赔付率') "`
  300.         C545_Ep3     float64 `xorm:" comment('Ep3') "`
  301.         C545_Ep1     float64 `xorm:" comment('Ep1') "`
  302.         C545_Ep0     float64 `xorm:" comment('Ep0') "`
  303.         C545_EPayout float64 `xorm:" comment('终赔付率') "`
  304.         C545_Kelly3  float64 `xorm:" comment('Kelly3') "`
  305.         C545_Kelly1  float64 `xorm:" comment('Kelly1') "`
  306.         C545_Kelly0  float64 `xorm:" comment('Kelly0') "`
  307.         //60STS
  308.         C60_Sp3     float64 `xorm:" comment('Sp3') index"`
  309.         C60_Sp1     float64 `xorm:" comment('Sp1') "`
  310.         C60_Sp0     float64 `xorm:" comment('Sp0') "`
  311.         C60_SPayout float64 `xorm:" comment('初赔付率') "`
  312.         C60_Ep3     float64 `xorm:" comment('Ep3') "`
  313.         C60_Ep1     float64 `xorm:" comment('Ep1') "`
  314.         C60_Ep0     float64 `xorm:" comment('Ep0') "`
  315.         C60_EPayout float64 `xorm:" comment('终赔付率') "`
  316.         C60_Kelly3  float64 `xorm:" comment('Kelly3') "`
  317.         C60_Kelly1  float64 `xorm:" comment('Kelly1') "`
  318.         C60_Kelly0  float64 `xorm:" comment('Kelly0') "`
  319.         //601LEON
  320.         C601_Sp3     float64 `xorm:" comment('Sp3') index"`
  321.         C601_Sp1     float64 `xorm:" comment('Sp1') "`
  322.         C601_Sp0     float64 `xorm:" comment('Sp0') "`
  323.         C601_SPayout float64 `xorm:" comment('初赔付率') "`
  324.         C601_Ep3     float64 `xorm:" comment('Ep3') "`
  325.         C601_Ep1     float64 `xorm:" comment('Ep1') "`
  326.         C601_Ep0     float64 `xorm:" comment('Ep0') "`
  327.         C601_EPayout float64 `xorm:" comment('终赔付率') "`
  328.         C601_Kelly3  float64 `xorm:" comment('Kelly3') "`
  329.         C601_Kelly1  float64 `xorm:" comment('Kelly1') "`
  330.         C601_Kelly0  float64 `xorm:" comment('Kelly0') "`
  331.         //649IBCBET
  332.         C649_Sp3     float64 `xorm:" comment('Sp3') index"`
  333.         C649_Sp1     float64 `xorm:" comment('Sp1') "`
  334.         C649_Sp0     float64 `xorm:" comment('Sp0') "`
  335.         C649_SPayout float64 `xorm:" comment('初赔付率') "`
  336.         C649_Ep3     float64 `xorm:" comment('Ep3') "`
  337.         C649_Ep1     float64 `xorm:" comment('Ep1') "`
  338.         C649_Ep0     float64 `xorm:" comment('Ep0') "`
  339.         C649_EPayout float64 `xorm:" comment('终赔付率') "`
  340.         C649_Kelly3  float64 `xorm:" comment('Kelly3') "`
  341.         C649_Kelly1  float64 `xorm:" comment('Kelly1') "`
  342.         C649_Kelly0  float64 `xorm:" comment('Kelly0') "`
  343.         //659盈禾
  344.         C659_Sp3     float64 `xorm:" comment('Sp3') index"`
  345.         C659_Sp1     float64 `xorm:" comment('Sp1') "`
  346.         C659_Sp0     float64 `xorm:" comment('Sp0') "`
  347.         C659_SPayout float64 `xorm:" comment('初赔付率') "`
  348.         C659_Ep3     float64 `xorm:" comment('Ep3') "`
  349.         C659_Ep1     float64 `xorm:" comment('Ep1') "`
  350.         C659_Ep0     float64 `xorm:" comment('Ep0') "`
  351.         C659_EPayout float64 `xorm:" comment('终赔付率') "`
  352.         C659_Kelly3  float64 `xorm:" comment('Kelly3') "`
  353.         C659_Kelly1  float64 `xorm:" comment('Kelly1') "`
  354.         C659_Kelly0  float64 `xorm:" comment('Kelly0') "`
  355.         //665Betsson
  356.         C665_Sp3     float64 `xorm:" comment('Sp3') index"`
  357.         C665_Sp1     float64 `xorm:" comment('Sp1') "`
  358.         C665_Sp0     float64 `xorm:" comment('Sp0') "`
  359.         C665_SPayout float64 `xorm:" comment('初赔付率') "`
  360.         C665_Ep3     float64 `xorm:" comment('Ep3') "`
  361.         C665_Ep1     float64 `xorm:" comment('Ep1') "`
  362.         C665_Ep0     float64 `xorm:" comment('Ep0') "`
  363.         C665_EPayout float64 `xorm:" comment('终赔付率') "`
  364.         C665_Kelly3  float64 `xorm:" comment('Kelly3') "`
  365.         C665_Kelly1  float64 `xorm:" comment('Kelly1') "`
  366.         C665_Kelly0  float64 `xorm:" comment('Kelly0') "`
  367.         //70Expekt
  368.         C70_Sp3     float64 `xorm:" comment('Sp3') index"`
  369.         C70_Sp1     float64 `xorm:" comment('Sp1') "`
  370.         C70_Sp0     float64 `xorm:" comment('Sp0') "`
  371.         C70_SPayout float64 `xorm:" comment('初赔付率') "`
  372.         C70_Ep3     float64 `xorm:" comment('Ep3') "`
  373.         C70_Ep1     float64 `xorm:" comment('Ep1') "`
  374.         C70_Ep0     float64 `xorm:" comment('Ep0') "`
  375.         C70_EPayout float64 `xorm:" comment('终赔付率') "`
  376.         C70_Kelly3  float64 `xorm:" comment('Kelly3') "`
  377.         C70_Kelly1  float64 `xorm:" comment('Kelly1') "`
  378.         C70_Kelly0  float64 `xorm:" comment('Kelly0') "`
  379.         //71Eurobet
  380.         C71_Sp3     float64 `xorm:" comment('Sp3') index"`
  381.         C71_Sp1     float64 `xorm:" comment('Sp1') "`
  382.         C71_Sp0     float64 `xorm:" comment('Sp0') "`
  383.         C71_SPayout float64 `xorm:" comment('初赔付率') "`
  384.         C71_Ep3     float64 `xorm:" comment('Ep3') "`
  385.         C71_Ep1     float64 `xorm:" comment('Ep1') "`
  386.         C71_Ep0     float64 `xorm:" comment('Ep0') "`
  387.         C71_EPayout float64 `xorm:" comment('终赔付率') "`
  388.         C71_Kelly3  float64 `xorm:" comment('Kelly3') "`
  389.         C71_Kelly1  float64 `xorm:" comment('Kelly1') "`
  390.         C71_Kelly0  float64 `xorm:" comment('Kelly0') "`
  391.         //80澳门
  392.         C80_Sp3     float64 `xorm:" comment('Sp3') index"`
  393.         C80_Sp1     float64 `xorm:" comment('Sp1') "`
  394.         C80_Sp0     float64 `xorm:" comment('Sp0') index"`
  395.         C80_SPayout float64 `xorm:" comment('初赔付率') "`
  396.         C80_Ep3     float64 `xorm:" comment('Ep3') "`
  397.         C80_Ep1     float64 `xorm:" comment('Ep1') "`
  398.         C80_Ep0     float64 `xorm:" comment('Ep0') "`
  399.         C80_EPayout float64 `xorm:" comment('终赔付率') "`
  400.         C80_Kelly3  float64 `xorm:" comment('Kelly3') "`
  401.         C80_Kelly1  float64 `xorm:" comment('Kelly1') "`
  402.         C80_Kelly0  float64 `xorm:" comment('Kelly0') "`
  403.         //81伟德
  404.         C81_Sp3     float64 `xorm:" comment('Sp3') index"`
  405.         C81_Sp1     float64 `xorm:" comment('Sp1') "`
  406.         C81_Sp0     float64 `xorm:" comment('Sp0') index"`
  407.         C81_SPayout float64 `xorm:" comment('初赔付率') "`
  408.         C81_Ep3     float64 `xorm:" comment('Ep3') "`
  409.         C81_Ep1     float64 `xorm:" comment('Ep1') "`
  410.         C81_Ep0     float64 `xorm:" comment('Ep0') "`
  411.         C81_EPayout float64 `xorm:" comment('终赔付率') "`
  412.         C81_Kelly3  float64 `xorm:" comment('Kelly3') "`
  413.         C81_Kelly1  float64 `xorm:" comment('Kelly1') "`
  414.         C81_Kelly0  float64 `xorm:" comment('Kelly0') "`
  415.         //82立博
  416.         C82_Sp3     float64 `xorm:" comment('Sp3') index"`
  417.         C82_Sp1     float64 `xorm:" comment('Sp1') "`
  418.         C82_Sp0     float64 `xorm:" comment('Sp0') index"`
  419.         C82_SPayout float64 `xorm:" comment('初赔付率') "`
  420.         C82_Ep3     float64 `xorm:" comment('Ep3') "`
  421.         C82_Ep1     float64 `xorm:" comment('Ep1') "`
  422.         C82_Ep0     float64 `xorm:" comment('Ep0') "`
  423.         C82_EPayout float64 `xorm:" comment('终赔付率') "`
  424.         C82_Kelly3  float64 `xorm:" comment('Kelly3') "`
  425.         C82_Kelly1  float64 `xorm:" comment('Kelly1') "`
  426.         C82_Kelly0  float64 `xorm:" comment('Kelly0') "`
  427.         //841Smarkets
  428.         C841_Sp3     float64 `xorm:" comment('Sp3') index"`
  429.         C841_Sp1     float64 `xorm:" comment('Sp1') "`
  430.         C841_Sp0     float64 `xorm:" comment('Sp0') "`
  431.         C841_SPayout float64 `xorm:" comment('初赔付率') "`
  432.         C841_Ep3     float64 `xorm:" comment('Ep3') "`
  433.         C841_Ep1     float64 `xorm:" comment('Ep1') "`
  434.         C841_Ep0     float64 `xorm:" comment('Ep0') "`
  435.         C841_EPayout float64 `xorm:" comment('终赔付率') "`
  436.         C841_Kelly3  float64 `xorm:" comment('Kelly3') "`
  437.         C841_Kelly1  float64 `xorm:" comment('Kelly1') "`
  438.         C841_Kelly0  float64 `xorm:" comment('Kelly0') "`
  439.         //88Coral
  440.         C88_Sp3     float64 `xorm:" comment('Sp3') index"`
  441.         C88_Sp1     float64 `xorm:" comment('Sp1') "`
  442.         C88_Sp0     float64 `xorm:" comment('Sp0') "`
  443.         C88_SPayout float64 `xorm:" comment('初赔付率') "`
  444.         C88_Ep3     float64 `xorm:" comment('Ep3') "`
  445.         C88_Ep1     float64 `xorm:" comment('Ep1') "`
  446.         C88_Ep0     float64 `xorm:" comment('Ep0') "`
  447.         C88_EPayout float64 `xorm:" comment('终赔付率') "`
  448.         C88_Kelly3  float64 `xorm:" comment('Kelly3') "`
  449.         C88_Kelly1  float64 `xorm:" comment('Kelly1') "`
  450.         C88_Kelly0  float64 `xorm:" comment('Kelly0') "`
  451.         //9Centrebet
  452.         C9_Sp3     float64 `xorm:" comment('Sp3') index"`
  453.         C9_Sp1     float64 `xorm:" comment('Sp1') "`
  454.         C9_Sp0     float64 `xorm:" comment('Sp0') "`
  455.         C9_SPayout float64 `xorm:" comment('初赔付率') "`
  456.         C9_Ep3     float64 `xorm:" comment('Ep3') "`
  457.         C9_Ep1     float64 `xorm:" comment('Ep1') "`
  458.         C9_Ep0     float64 `xorm:" comment('Ep0') "`
  459.         C9_EPayout float64 `xorm:" comment('终赔付率') "`
  460.         C9_Kelly3  float64 `xorm:" comment('Kelly3') "`
  461.         C9_Kelly1  float64 `xorm:" comment('Kelly1') "`
  462.         C9_Kelly0  float64 `xorm:" comment('Kelly0') "`
  463.         //90易胜博
  464.         C90_Sp3     float64 `xorm:" comment('Sp3') index"`
  465.         C90_Sp1     float64 `xorm:" comment('Sp1') "`
  466.         C90_Sp0     float64 `xorm:" comment('Sp0') index"`
  467.         C90_SPayout float64 `xorm:" comment('初赔付率') "`
  468.         C90_Ep3     float64 `xorm:" comment('Ep3') "`
  469.         C90_Ep1     float64 `xorm:" comment('Ep1') "`
  470.         C90_Ep0     float64 `xorm:" comment('Ep0') "`
  471.         C90_EPayout float64 `xorm:" comment('终赔付率') "`
  472.         C90_Kelly3  float64 `xorm:" comment('Kelly3') "`
  473.         C90_Kelly1  float64 `xorm:" comment('Kelly1') "`
  474.         C90_Kelly0  float64 `xorm:" comment('Kelly0') "`
  475.         //97Nike
  476.         C97_Sp3     float64 `xorm:" comment('Sp3') index"`
  477.         C97_Sp1     float64 `xorm:" comment('Sp1') "`
  478.         C97_Sp0     float64 `xorm:" comment('Sp0') "`
  479.         C97_SPayout float64 `xorm:" comment('初赔付率') "`
  480.         C97_Ep3     float64 `xorm:" comment('Ep3') "`
  481.         C97_Ep1     float64 `xorm:" comment('Ep1') "`
  482.         C97_Ep0     float64 `xorm:" comment('Ep0') "`
  483.         C97_EPayout float64 `xorm:" comment('终赔付率') "`
  484.         C97_Kelly3  float64 `xorm:" comment('Kelly3') "`
  485.         C97_Kelly1  float64 `xorm:" comment('Kelly1') "`
  486.         C97_Kelly0  float64 `xorm:" comment('Kelly0') "`
  487.         //97618Bet
  488.         C976_Sp3     float64 `xorm:" comment('Sp3') index"`
  489.         C976_Sp1     float64 `xorm:" comment('Sp1') "`
  490.         C976_Sp0     float64 `xorm:" comment('Sp0') "`
  491.         C976_SPayout float64 `xorm:" comment('初赔付率') "`
  492.         C976_Ep3     float64 `xorm:" comment('Ep3') "`
  493.         C976_Ep1     float64 `xorm:" comment('Ep1') "`
  494.         C976_Ep0     float64 `xorm:" comment('Ep0') "`
  495.         C976_EPayout float64 `xorm:" comment('终赔付率') "`
  496.         C976_Kelly3  float64 `xorm:" comment('Kelly3') "`
  497.         C976_Kelly1  float64 `xorm:" comment('Kelly1') "`
  498.         C976_Kelly0  float64 `xorm:" comment('Kelly0') "`

  499.         pojo.BasePojo `xorm:"extends"`
  500. }
复制代码





SELECT
"大小赔",
DATE_FORMAT(mh.`MatchDate`, '%Y') AS '年份',
COUNT(1) AS "数据行数"
FROM
t_match_his mh
INNER JOIN t_ou_full af
  ON mh.id = af.matchId
WHERE 1=1
GROUP BY DATE_FORMAT(mh.`MatchDate`, '%Y')
ORDER BY DATE_FORMAT(mh.`MatchDate`, '%Y')
3.png
结构体数据结构
  1. package pojo

  2. import (
  3.         "fooy-parent/common/base/pojo"
  4.         "time"
  5. )

  6. /**
  7. 大小赔全场数据表,初终盘
  8. */
  9. type OuFull struct {
  10.         //比赛id
  11.         MatchId string `xorm:" varchar(20) index"`
  12.         //比赛时间
  13.         MatchDate time.Time `xorm:" comment('MatchDate') index"`
  14.         //数据时间
  15.         OddDate string `xorm:" comment('数据时间') index varchar(20)"`

  16.         //1,1澳门
  17.         C1_Sp3     float64 `xorm:" comment('Sp3') index"`
  18.         C1_SPanKou float64 `xorm:" comment('s让球') index"`
  19.         C1_Sp0     float64 `xorm:" comment('Sp0') index"`
  20.         C1_Ep3     float64 `xorm:" comment('Ep3') "`
  21.         C1_EPanKou float64 `xorm:" comment('e让球') "`
  22.         C1_Ep0     float64 `xorm:" comment('Ep0') "`
  23.         //12,12易胜博
  24.         C12_Sp3     float64 `xorm:" comment('Sp3') index"`
  25.         C12_SPanKou float64 `xorm:" comment('s让球') index"`
  26.         C12_Sp0     float64 `xorm:" comment('Sp0') index"`
  27.         C12_Ep3     float64 `xorm:" comment('Ep3') "`
  28.         C12_EPanKou float64 `xorm:" comment('e让球') "`
  29.         C12_Ep0     float64 `xorm:" comment('Ep0') "`
  30.         //14,14韦德
  31.         C14_Sp3     float64 `xorm:" comment('Sp3') index"`
  32.         C14_SPanKou float64 `xorm:" comment('s让球') index"`
  33.         C14_Sp0     float64 `xorm:" comment('Sp0') index"`
  34.         C14_Ep3     float64 `xorm:" comment('Ep3') "`
  35.         C14_EPanKou float64 `xorm:" comment('e让球') "`
  36.         C14_Ep0     float64 `xorm:" comment('Ep0') "`
  37.         //17,17明陞
  38.         C17_Sp3     float64 `xorm:" comment('Sp3') index"`
  39.         C17_SPanKou float64 `xorm:" comment('s让球') index"`
  40.         C17_Sp0     float64 `xorm:" comment('Sp0') index"`
  41.         C17_Ep3     float64 `xorm:" comment('Ep3') "`
  42.         C17_EPanKou float64 `xorm:" comment('e让球') "`
  43.         C17_Ep0     float64 `xorm:" comment('Ep0') "`
  44.         //19,19Interwetten
  45.         C19_Sp3     float64 `xorm:" comment('Sp3') index"`
  46.         C19_SPanKou float64 `xorm:" comment('s让球') index"`
  47.         C19_Sp0     float64 `xorm:" comment('Sp0') index"`
  48.         C19_Ep3     float64 `xorm:" comment('Ep3') "`
  49.         C19_EPanKou float64 `xorm:" comment('e让球') "`
  50.         C19_Ep0     float64 `xorm:" comment('Ep0') "`
  51.         //22,2210BET
  52.         C22_Sp3     float64 `xorm:" comment('Sp3') index"`
  53.         C22_SPanKou float64 `xorm:" comment('s让球') index"`
  54.         C22_Sp0     float64 `xorm:" comment('Sp0') index"`
  55.         C22_Ep3     float64 `xorm:" comment('Ep3') "`
  56.         C22_EPanKou float64 `xorm:" comment('e让球') "`
  57.         C22_Ep0     float64 `xorm:" comment('Ep0') "`
  58.         //23,23金宝博
  59.         C23_Sp3     float64 `xorm:" comment('Sp3') index"`
  60.         C23_SPanKou float64 `xorm:" comment('s让球') index"`
  61.         C23_Sp0     float64 `xorm:" comment('Sp0') index"`
  62.         C23_Ep3     float64 `xorm:" comment('Ep3') "`
  63.         C23_EPanKou float64 `xorm:" comment('e让球') "`
  64.         C23_Ep0     float64 `xorm:" comment('Ep0') "`
  65.         //24,2412bet
  66.         C24_Sp3     float64 `xorm:" comment('Sp3') index"`
  67.         C24_SPanKou float64 `xorm:" comment('s让球') index"`
  68.         C24_Sp0     float64 `xorm:" comment('Sp0') index"`
  69.         C24_Ep3     float64 `xorm:" comment('Ep3') "`
  70.         C24_EPanKou float64 `xorm:" comment('e让球') "`
  71.         C24_Ep0     float64 `xorm:" comment('Ep0') "`
  72.         //3,3Crown
  73.         C3_Sp3     float64 `xorm:" comment('Sp3') index"`
  74.         C3_SPanKou float64 `xorm:" comment('s让球') index"`
  75.         C3_Sp0     float64 `xorm:" comment('Sp0') index"`
  76.         C3_Ep3     float64 `xorm:" comment('Ep3') "`
  77.         C3_EPanKou float64 `xorm:" comment('e让球') "`
  78.         C3_Ep0     float64 `xorm:" comment('Ep0') "`
  79.         //31,31利记
  80.         C31_Sp3     float64 `xorm:" comment('Sp3') index"`
  81.         C31_SPanKou float64 `xorm:" comment('s让球') index"`
  82.         C31_Sp0     float64 `xorm:" comment('Sp0') index"`
  83.         C31_Ep3     float64 `xorm:" comment('Ep3') "`
  84.         C31_EPanKou float64 `xorm:" comment('e让球') "`
  85.         C31_Ep0     float64 `xorm:" comment('Ep0') "`
  86.         //35,35盈禾
  87.         C35_Sp3     float64 `xorm:" comment('Sp3') index"`
  88.         C35_SPanKou float64 `xorm:" comment('s让球') index"`
  89.         C35_Sp0     float64 `xorm:" comment('Sp0') index"`
  90.         C35_Ep3     float64 `xorm:" comment('Ep3') "`
  91.         C35_EPanKou float64 `xorm:" comment('e让球') "`
  92.         C35_Ep0     float64 `xorm:" comment('Ep0') "`
  93.         //4,4立博
  94.         C4_Sp3     float64 `xorm:" comment('Sp3') index"`
  95.         C4_SPanKou float64 `xorm:" comment('s让球') index"`
  96.         C4_Sp0     float64 `xorm:" comment('Sp0') index"`
  97.         C4_Ep3     float64 `xorm:" comment('Ep3') "`
  98.         C4_EPanKou float64 `xorm:" comment('e让球') "`
  99.         C4_Ep0     float64 `xorm:" comment('Ep0') "`
  100.         //42,4218Bet
  101.         C42_Sp3     float64 `xorm:" comment('Sp3') index"`
  102.         C42_SPanKou float64 `xorm:" comment('s让球') index"`
  103.         C42_Sp0     float64 `xorm:" comment('Sp0') index"`
  104.         C42_Ep3     float64 `xorm:" comment('Ep3') "`
  105.         C42_EPanKou float64 `xorm:" comment('e让球') "`
  106.         C42_Ep0     float64 `xorm:" comment('Ep0') "`
  107.         //47,47平博
  108.         C47_Sp3     float64 `xorm:" comment('Sp3') index"`
  109.         C47_SPanKou float64 `xorm:" comment('s让球') index"`
  110.         C47_Sp0     float64 `xorm:" comment('Sp0') index"`
  111.         C47_Ep3     float64 `xorm:" comment('Ep3') "`
  112.         C47_EPanKou float64 `xorm:" comment('e让球') "`
  113.         C47_Ep0     float64 `xorm:" comment('Ep0') "`
  114.         //48,48香港马会
  115.         C48_Sp3     float64 `xorm:" comment('Sp3') index"`
  116.         C48_SPanKou float64 `xorm:" comment('s让球') index"`
  117.         C48_Sp0     float64 `xorm:" comment('Sp0') index"`
  118.         C48_Ep3     float64 `xorm:" comment('Ep3') "`
  119.         C48_EPanKou float64 `xorm:" comment('e让球') "`
  120.         C48_Ep0     float64 `xorm:" comment('Ep0') "`
  121.         //49,49BWin
  122.         C49_Sp3     float64 `xorm:" comment('Sp3') index"`
  123.         C49_SPanKou float64 `xorm:" comment('s让球') index"`
  124.         C49_Sp0     float64 `xorm:" comment('Sp0') index"`
  125.         C49_Ep3     float64 `xorm:" comment('Ep3') "`
  126.         C49_EPanKou float64 `xorm:" comment('e让球') "`
  127.         C49_Ep0     float64 `xorm:" comment('Ep0') "`
  128.         //8,8Bet365
  129.         C8_Sp3     float64 `xorm:" comment('Sp3') index"`
  130.         C8_SPanKou float64 `xorm:" comment('s让球') index"`
  131.         C8_Sp0     float64 `xorm:" comment('Sp0') index"`
  132.         C8_Ep3     float64 `xorm:" comment('Ep3') "`
  133.         C8_EPanKou float64 `xorm:" comment('e让球') "`
  134.         C8_Ep0     float64 `xorm:" comment('Ep0') "`

  135.         pojo.BasePojo `xorm:"extends"`
  136. }
复制代码




回复

使用道具 举报

78

主题

162

帖子

1万

积分

管理员

Rank: 1

积分
11531

荣誉管理论坛元老

 楼主| 发表于 2021-8-20 11:22:37 | 显示全部楼层
数据已完结,采集联赛列表如下:
(并会同步北单,竞彩的新增联赛)

阿甲
阿联酋超
埃及超
爱超
爱甲
奥地利杯
奥甲
奥乙
澳洲甲
巴超杯
巴拉甲
巴西杯
巴西甲
巴西乙
白俄超
保超
比甲
比利时杯
比乙
冰岛超
冰岛超级杯
波兰杯
波兰超
波兰甲
超霸杯
丹麦杯
丹麦超
丹麦甲
丹麦乙
德丙
德国杯
德甲
德乙
俄杯
俄超
俄甲
厄瓜甲
法丙
法超杯
法国杯
法甲
法乙
芬超
芬甲
芬兰杯
哥伦甲
哥斯甲
国际友谊
韩K2联
韩K联
韩足总
荷甲
荷兰杯
荷乙
加纳超
捷甲
捷克杯
卡塔尔联
罗杯
罗甲
罗乙
马来超
马来甲
美冠杯
美乙
美职业
秘鲁甲
缅甸联
摩洛超
墨西联
南非超
南美超杯
南美预选
南球杯
挪超
挪甲
欧冠杯
欧国联
欧罗巴杯
欧青U21
欧青U21外
欧洲杯
欧洲预选
葡杯
葡超
葡超杯
葡甲
葡联杯
日丙
日超杯
日皇杯
日联杯
日职联
日职乙
瑞典杯
瑞典超
瑞典甲
瑞士杯
瑞士超
瑞士甲
塞尔超
世俱杯
斯伐超
苏超
苏冠
苏联杯
苏总杯
泰超
泰甲
土杯
土超
土超杯
土甲
威超
乌克超
乌克兰杯
乌拉甲
乌兹超
西杯
西超杯
西甲
西乙
希腊杯
希腊超
希腊甲
亚冠杯
伊朗超
伊朗甲
以超
以甲
意杯
意丙1
意超杯
意甲
意乙
印度超
英超
英冠
英甲
英锦赛
英联杯
英乙
英足总杯
越南联
智利甲
中超
中甲
自由杯
回复 支持 1 反对 0

使用道具 举报

52

主题

77

帖子

377

积分

超级版主

Rank: 8Rank: 8

积分
377
发表于 2021-8-10 11:48:51 | 显示全部楼层
66666666666
回复 支持 反对

使用道具 举报

0

主题

3

帖子

24

积分

初级

Rank: 1

积分
24
发表于 2021-8-10 11:51:01 | 显示全部楼层
牛逼66666
回复

使用道具 举报

0

主题

3

帖子

56

积分

初级

Rank: 1

积分
56
发表于 2021-8-10 12:38:40 | 显示全部楼层
加油6666666
回复 支持 反对

使用道具 举报

0

主题

12

帖子

1578

积分

特级

Rank: 3Rank: 3

积分
1578
发表于 2021-8-10 16:50:28 | 显示全部楼层
厉害了6666
回复 支持 反对

使用道具 举报

52

主题

77

帖子

377

积分

超级版主

Rank: 8Rank: 8

积分
377
发表于 2021-8-20 11:24:51 | 显示全部楼层
666666666666666
回复 支持 反对

使用道具 举报

0

主题

22

帖子

184

积分

初级

Rank: 1

积分
184
发表于 2021-8-20 14:26:53 | 显示全部楼层
牛逼666666
回复 支持 反对

使用道具 举报

0

主题

48

帖子

1502

积分

特级

Rank: 3Rank: 3

积分
1502
发表于 2021-9-14 10:00:15 | 显示全部楼层
辛苦了,坛主,牛逼666
回复 支持 1 反对 0

使用道具 举报

0

主题

12

帖子

1578

积分

特级

Rank: 3Rank: 3

积分
1578
发表于 2021-9-15 11:03:42 | 显示全部楼层
厉害了6666666
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|Archiver|手机版|小黑屋|AIQT论坛

GMT+8, 2024-3-28 17:03 , Processed in 0.069543 second(s), 33 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表