package com.yeshi.buwan.domain.special;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.system.DetailSystem;
|
|
public class SuperSpecial {
|
@Expose
|
private String id;
|
@Expose
|
private DetailSystem detailSystem;
|
@Expose
|
private Special special;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public DetailSystem getDetailSystem() {
|
return detailSystem;
|
}
|
|
public void setDetailSystem(DetailSystem detailSystem) {
|
this.detailSystem = detailSystem;
|
}
|
|
public Special getSpecial() {
|
return special;
|
}
|
|
public void setSpecial(Special special) {
|
this.special = special;
|
}
|
}
|