|
@@ -0,0 +1,103 @@
|
|
|
+package com.ym.mec.biz.dal.dto;
|
|
|
+
|
|
|
+public class StudentVipPracticeExportDto{
|
|
|
+ private Integer userId;
|
|
|
+
|
|
|
+ private String username;
|
|
|
+
|
|
|
+ private Integer vipOverNum;
|
|
|
+
|
|
|
+ private Integer vipNotStartNum;
|
|
|
+
|
|
|
+ private String vipTeacherIds;
|
|
|
+
|
|
|
+ private String vipTeacherNames;
|
|
|
+
|
|
|
+ private Integer practiceOverNum;
|
|
|
+
|
|
|
+ private Integer practiceNotStartNum;
|
|
|
+
|
|
|
+ private String practiceTeacherIds;
|
|
|
+
|
|
|
+ private String practiceTeacherNames;
|
|
|
+
|
|
|
+ public Integer getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(Integer userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUsername() {
|
|
|
+ return username;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUsername(String username) {
|
|
|
+ this.username = username;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getVipOverNum() {
|
|
|
+ return vipOverNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVipOverNum(Integer vipOverNum) {
|
|
|
+ this.vipOverNum = vipOverNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getVipNotStartNum() {
|
|
|
+ return vipNotStartNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVipNotStartNum(Integer vipNotStartNum) {
|
|
|
+ this.vipNotStartNum = vipNotStartNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVipTeacherIds() {
|
|
|
+ return vipTeacherIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVipTeacherIds(String vipTeacherIds) {
|
|
|
+ this.vipTeacherIds = vipTeacherIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVipTeacherNames() {
|
|
|
+ return vipTeacherNames;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVipTeacherNames(String vipTeacherNames) {
|
|
|
+ this.vipTeacherNames = vipTeacherNames;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPracticeOverNum() {
|
|
|
+ return practiceOverNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPracticeOverNum(Integer practiceOverNum) {
|
|
|
+ this.practiceOverNum = practiceOverNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPracticeNotStartNum() {
|
|
|
+ return practiceNotStartNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPracticeNotStartNum(Integer practiceNotStartNum) {
|
|
|
+ this.practiceNotStartNum = practiceNotStartNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPracticeTeacherIds() {
|
|
|
+ return practiceTeacherIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPracticeTeacherIds(String practiceTeacherIds) {
|
|
|
+ this.practiceTeacherIds = practiceTeacherIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPracticeTeacherNames() {
|
|
|
+ return practiceTeacherNames;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPracticeTeacherNames(String practiceTeacherNames) {
|
|
|
+ this.practiceTeacherNames = practiceTeacherNames;
|
|
|
+ }
|
|
|
+}
|