|
@@ -0,0 +1,76 @@
|
|
|
+package com.ym.mec.biz.dal.dto;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author Joburgess
|
|
|
+ * @Date 2021/8/16 0016
|
|
|
+ */
|
|
|
+public class EduOrganStudentDataDto {
|
|
|
+
|
|
|
+ @ApiModelProperty("学员总数")
|
|
|
+ private int totalStudentNum;
|
|
|
+
|
|
|
+ @ApiModelProperty("付费会员数")
|
|
|
+ private int vipStudentNum;
|
|
|
+
|
|
|
+ @ApiModelProperty("试用会员数")
|
|
|
+ private int eVipStudentNum;
|
|
|
+
|
|
|
+ @ApiModelProperty("付费会员占比")
|
|
|
+ private float vipStudentDuty;
|
|
|
+
|
|
|
+ @ApiModelProperty("云教练试用人数")
|
|
|
+ private int cloudStudyUseStudentNum;
|
|
|
+
|
|
|
+ @ApiModelProperty("活跃人数")
|
|
|
+ private int cloudStudyLivelyStudentNum;
|
|
|
+
|
|
|
+ public int getTotalStudentNum() {
|
|
|
+ return totalStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalStudentNum(int totalStudentNum) {
|
|
|
+ this.totalStudentNum = totalStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getVipStudentNum() {
|
|
|
+ return vipStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVipStudentNum(int vipStudentNum) {
|
|
|
+ this.vipStudentNum = vipStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int geteVipStudentNum() {
|
|
|
+ return eVipStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void seteVipStudentNum(int eVipStudentNum) {
|
|
|
+ this.eVipStudentNum = eVipStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public float getVipStudentDuty() {
|
|
|
+ return vipStudentDuty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVipStudentDuty(float vipStudentDuty) {
|
|
|
+ this.vipStudentDuty = vipStudentDuty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getCloudStudyUseStudentNum() {
|
|
|
+ return cloudStudyUseStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCloudStudyUseStudentNum(int cloudStudyUseStudentNum) {
|
|
|
+ this.cloudStudyUseStudentNum = cloudStudyUseStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getCloudStudyLivelyStudentNum() {
|
|
|
+ return cloudStudyLivelyStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCloudStudyLivelyStudentNum(int cloudStudyLivelyStudentNum) {
|
|
|
+ this.cloudStudyLivelyStudentNum = cloudStudyLivelyStudentNum;
|
|
|
+ }
|
|
|
+}
|