rhj | e18c3f7 | 2025-06-08 00:27:01 +0800 | [diff] [blame] | 1 | package entity; |
2 | |||||
3 | /** | ||||
4 | * 包含种子信息和投票数的复合类 | ||||
5 | */ | ||||
6 | public class SeedWithVotes { | ||||
7 | public Seed seed; | ||||
8 | public int votes; | ||||
9 | |||||
10 | public SeedWithVotes() { | ||||
11 | } | ||||
12 | |||||
13 | public SeedWithVotes(Seed seed, int votes) { | ||||
14 | this.seed = seed; | ||||
15 | this.votes = votes; | ||||
16 | } | ||||
17 | } |