|
@@ -3,6 +3,8 @@ package com.ym.mec.biz.dal.dto;
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class ActivityCourseDetailDto {
|
|
|
@JSONField(serialize=false)
|
|
|
private Integer userId;
|
|
@@ -19,7 +21,11 @@ public class ActivityCourseDetailDto {
|
|
|
@ApiModelProperty(value = "乐理课", required = false)
|
|
|
private Integer musicTheory = 0;
|
|
|
|
|
|
- private Integer musicTheoryPrice = 0;
|
|
|
+ private BigDecimal musicTheoryPrice;
|
|
|
+
|
|
|
+ public void setMusicTheoryPrice(BigDecimal musicTheoryPrice) {
|
|
|
+ this.musicTheoryPrice = musicTheoryPrice;
|
|
|
+ }
|
|
|
|
|
|
public Integer getUserId() {
|
|
|
return userId;
|
|
@@ -29,7 +35,7 @@ public class ActivityCourseDetailDto {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
|
|
|
- public Integer getMusicTheoryPrice() {
|
|
|
+ public BigDecimal getMusicTheoryPrice() {
|
|
|
return musicTheoryPrice;
|
|
|
}
|
|
|
|