|
@@ -4,6 +4,12 @@ import java.math.BigDecimal;
|
|
|
|
|
|
public class ChildrenStatisticsDto {
|
|
|
|
|
|
+ private Integer organId;
|
|
|
+
|
|
|
+ private Integer cooperationOrganId;
|
|
|
+
|
|
|
+ private String musicGroupId;
|
|
|
+
|
|
|
private String organName;
|
|
|
|
|
|
private String cooperationOrganName;
|
|
@@ -28,6 +34,30 @@ public class ChildrenStatisticsDto {
|
|
|
|
|
|
private BigDecimal buyMusicTheoryAmount = BigDecimal.ZERO;
|
|
|
|
|
|
+ public Integer getOrganId() {
|
|
|
+ return organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganId(Integer organId) {
|
|
|
+ this.organId = organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCooperationOrganId() {
|
|
|
+ return cooperationOrganId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCooperationOrganId(Integer cooperationOrganId) {
|
|
|
+ this.cooperationOrganId = cooperationOrganId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMusicGroupId() {
|
|
|
+ return musicGroupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicGroupId(String musicGroupId) {
|
|
|
+ this.musicGroupId = musicGroupId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getOrganName() {
|
|
|
return organName;
|
|
|
}
|