You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
933 B
47 lines
933 B
package com.dky.calculate;
|
|
|
|
|
|
import com.dky.utils.result.MatchedDevice;
|
|
|
|
import java.util.List;
|
|
|
|
public class SchemeRatingRes {
|
|
|
|
List<MatchedDevice> list;
|
|
|
|
Double schemeRating;
|
|
|
|
String planName;
|
|
|
|
public SchemeRatingRes() { }
|
|
|
|
public SchemeRatingRes(List<MatchedDevice> list, Double schemeRating, String planName) {
|
|
this.list = list;
|
|
this.schemeRating = schemeRating;
|
|
this.planName = planName;
|
|
}
|
|
|
|
public List<MatchedDevice> getList() {
|
|
return list;
|
|
}
|
|
|
|
public void setList(List<MatchedDevice> list) {
|
|
this.list = list;
|
|
}
|
|
|
|
public Double getSchemeRating() {
|
|
return schemeRating;
|
|
}
|
|
|
|
public void setSchemeRating(Double schemeRating) {
|
|
this.schemeRating = schemeRating;
|
|
}
|
|
|
|
public String getPlanName() {
|
|
return planName;
|
|
}
|
|
|
|
public void setPlanName(String planName) {
|
|
this.planName = planName;
|
|
}
|
|
}
|
|
|