package com.JiHeTotal; import java.util.Map; public class Student { int id; String name; Map<String, Double> scode; int totalSum; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Map<String, Double> getScode() { return scode; } public void setScode(Map<String, Double> scode) { this.scode = scode; } public Student(Integer id, String name, Map<String, Double> scode) { super(); this.id = id; this.name = name; this.scode = scode; } }
时间: 2024-10-19 20:42:13