标签:综合 set util pac java get ret com pre
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;
}
}
标签:综合 set util pac java get ret com pre
原文地址:http://www.cnblogs.com/java-le/p/6443470.html