|
@@ -13,6 +13,9 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
@ApiModel( description = "老师分享分润信息")
|
|
|
public class ShareProfitVo {
|
|
|
|
|
|
+ @ApiModelProperty("老师id")
|
|
|
+ private Long teacherId;
|
|
|
+
|
|
|
@ApiModelProperty("推荐老师姓名")
|
|
|
private String name;
|
|
|
|
|
@@ -37,6 +40,14 @@ public class ShareProfitVo {
|
|
|
@ApiModelProperty("会员信息")
|
|
|
private MemberPriceSettingsVo vip;
|
|
|
|
|
|
+ public Long getTeacherId() {
|
|
|
+ return teacherId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeacherId(Long teacherId) {
|
|
|
+ this.teacherId = teacherId;
|
|
|
+ }
|
|
|
+
|
|
|
public MemberPriceSettingsVo getVip() {
|
|
|
return vip;
|
|
|
}
|