|
@@ -2,6 +2,7 @@ package com.yonge.cooleshow.biz.dal.dto.req;
|
|
|
|
|
|
|
|
|
import com.yonge.cooleshow.biz.dal.enums.AuthStatusEnum;
|
|
|
+import com.yonge.cooleshow.common.enums.YesOrNoEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -32,6 +33,18 @@ public class TeacherMusicSheetAuditReq {
|
|
|
@NotBlank(message = "审核理由不能为空 ")
|
|
|
private String remark;
|
|
|
|
|
|
+ @ApiModelProperty("是否可以转简谱(0:否,1:是)")
|
|
|
+ private YesOrNoEnum notation;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否可以评测(0:否;1:是)")
|
|
|
+ private YesOrNoEnum canEvaluate; //是否可以评测(0:否;1:是)
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否展示指法(0:否;1:是)")
|
|
|
+ private YesOrNoEnum showFingering; //是否展示指法(0:否;1:是)
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否自带节拍器(0:否;1:是)")
|
|
|
+ private YesOrNoEnum hasBeat; //是否自带节拍器(0:否;1:是)
|
|
|
+
|
|
|
public String getMusicImg() {
|
|
|
return musicImg;
|
|
|
}
|
|
@@ -63,4 +76,36 @@ public class TeacherMusicSheetAuditReq {
|
|
|
public void setRemark(String remark) {
|
|
|
this.remark = remark;
|
|
|
}
|
|
|
+
|
|
|
+ public YesOrNoEnum getNotation() {
|
|
|
+ return notation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNotation(YesOrNoEnum notation) {
|
|
|
+ this.notation = notation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public YesOrNoEnum getCanEvaluate() {
|
|
|
+ return canEvaluate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCanEvaluate(YesOrNoEnum canEvaluate) {
|
|
|
+ this.canEvaluate = canEvaluate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public YesOrNoEnum getShowFingering() {
|
|
|
+ return showFingering;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShowFingering(YesOrNoEnum showFingering) {
|
|
|
+ this.showFingering = showFingering;
|
|
|
+ }
|
|
|
+
|
|
|
+ public YesOrNoEnum getHasBeat() {
|
|
|
+ return hasBeat;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHasBeat(YesOrNoEnum hasBeat) {
|
|
|
+ this.hasBeat = hasBeat;
|
|
|
+ }
|
|
|
}
|