彩票猪手精推版

This commit is contained in:
lihanqi
2025-11-04 17:18:21 +08:00
parent 7c2b23f1a2
commit dc59f393fa
172 changed files with 23112 additions and 122 deletions

View File

@@ -0,0 +1,70 @@
package com.xy.xyaicpzs.domain.vo;
import lombok.Builder;
import lombok.Data;
import java.util.List;
/**
* 双色球第二步分析结果VO
*/
@Data
@Builder
public class SSQSecondStepResultVO {
/**
* 分析结果列表
*/
private List<BallAnalysisResult> results;
/**
* 分析策略 (H/M/L)
*/
private String strategy;
/**
* 输入的红球号码
*/
private List<Integer> redBalls;
/**
* 输入的蓝球号码
*/
private Integer blueBall;
/**
* 下期首球号码
*/
private Integer nextFirstBall;
/**
* 球号分析结果内部类
*/
@Data
@Builder
public static class BallAnalysisResult {
/**
* 球号
*/
private Integer ballNumber;
/**
* 出现次数
*/
private Integer frequency;
/**
* 系数和
*/
private Double coefficientSum;
/**
* 百期排位
*/
private Integer top100Ranking;
/**
* 历史排位
*/
private Integer historyRanking;
}
}