|
@@ -3136,6 +3136,35 @@ timeInterval?: number;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type AddStudentConsumeDateDto = {
|
|
|
+/** 班级id */
|
|
|
+classId?: string;
|
|
|
+/** 班级名称 */
|
|
|
+className?: string;
|
|
|
+/** 消费金额 */
|
|
|
+consumeMoney?: number;
|
|
|
+/** 消费时间 */
|
|
|
+consumeTime?: string;
|
|
|
+/** 消费类型 */
|
|
|
+consumeType?: string;
|
|
|
+/** 年级id */
|
|
|
+gradeId?: string;
|
|
|
+/** 年级名称 */
|
|
|
+gradeName?: string;
|
|
|
+/** 专业id */
|
|
|
+majorId?: string;
|
|
|
+/** 专业名称 */
|
|
|
+majorName?: string;
|
|
|
+/** 序号 */
|
|
|
+sortCode?: number;
|
|
|
+/** 学生id */
|
|
|
+studentId?: string;
|
|
|
+/** 学生姓名 */
|
|
|
+studentName?: string;
|
|
|
+/** 学生学号 */
|
|
|
+studentUserName?: string;
|
|
|
+}
|
|
|
+
|
|
|
type AddStudentHonorsDto = {
|
|
|
/** 申请人 */
|
|
|
applicantUserId?: string;
|
|
@@ -3180,6 +3209,11 @@ teacherId?: string;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type AddStudentReportRecordDto = {
|
|
|
+/** 学生id */
|
|
|
+userId?: string;
|
|
|
+}
|
|
|
+
|
|
|
type AddStudentScholarshipDto = {
|
|
|
/** 申请id */
|
|
|
applicantIds?: string[];
|
|
@@ -5373,6 +5407,8 @@ majorGradationIdCn?: string;
|
|
|
}
|
|
|
|
|
|
type BaseNewStudentPageVo = {
|
|
|
+/** 班级名称 */
|
|
|
+className?: string;
|
|
|
createDate?: string;
|
|
|
/** 身份证号 */
|
|
|
credentialNumber?: string;
|
|
@@ -5413,6 +5449,8 @@ status?: number;
|
|
|
stduyStatus?: string;
|
|
|
/** 住宿类型中文 */
|
|
|
stduyStatusCn?: string;
|
|
|
+/** 班主任 */
|
|
|
+teacherName?: string;
|
|
|
/** 体重 */
|
|
|
weight?: number;
|
|
|
}
|
|
@@ -8123,6 +8161,17 @@ issn?: string;
|
|
|
version?: string;
|
|
|
}
|
|
|
|
|
|
+type CourseCountListVo = {
|
|
|
+/** 总课时 */
|
|
|
+courseCount?: string;
|
|
|
+/** 课程名称 */
|
|
|
+courseNames?: string;
|
|
|
+/** 所属部门 */
|
|
|
+deptName?: string;
|
|
|
+/** 统计项 */
|
|
|
+name?: string;
|
|
|
+}
|
|
|
+
|
|
|
type CourseDetailVo = {
|
|
|
/** 班级名称(课表类型为teacher时使用) */
|
|
|
className?: string;
|
|
@@ -8161,6 +8210,15 @@ timePeriod?: number;
|
|
|
timePeriodCn?: string;
|
|
|
}
|
|
|
|
|
|
+type CourseStatisticsDetailVo = {
|
|
|
+/** 课时榜 */
|
|
|
+courseCountList?: CourseCountListVo[];
|
|
|
+/** 教学部课时统计 */
|
|
|
+deptCourseList?: ItemCountRatioVo[];
|
|
|
+/** 其他补充课时 */
|
|
|
+otnherCourseList?: ItemCountRatioVo[];
|
|
|
+}
|
|
|
+
|
|
|
type CourseStatisticsVo = {
|
|
|
/** 调课总数 */
|
|
|
adjustCount?: number;
|
|
@@ -8501,7 +8559,7 @@ userIdCn?: string;
|
|
|
|
|
|
type DurationVo = {
|
|
|
/** 数量 */
|
|
|
-count?: number;
|
|
|
+count?: string;
|
|
|
/** 时间段 */
|
|
|
duration?: string;
|
|
|
}
|
|
@@ -9679,6 +9737,15 @@ count?: number;
|
|
|
item?: string;
|
|
|
}
|
|
|
|
|
|
+type ItemCountRatioVo = {
|
|
|
+/** 数量 */
|
|
|
+count?: number;
|
|
|
+/** 统计项 */
|
|
|
+item?: string;
|
|
|
+/** 占比 */
|
|
|
+ratio?: number;
|
|
|
+}
|
|
|
+
|
|
|
type ItemCountVo = {
|
|
|
/** 数量 */
|
|
|
count?: number;
|
|
@@ -12192,6 +12259,14 @@ total?: number;
|
|
|
totalPage?: number;
|
|
|
}
|
|
|
|
|
|
+type PageOutput<StudentConsumeDatePageVo> = {
|
|
|
+currentPage?: number;
|
|
|
+list?: StudentConsumeDatePageVo[];
|
|
|
+pageSize?: number;
|
|
|
+total?: number;
|
|
|
+totalPage?: number;
|
|
|
+}
|
|
|
+
|
|
|
type PageOutput<StudentHonorsPageVo> = {
|
|
|
currentPage?: number;
|
|
|
list?: StudentHonorsPageVo[];
|
|
@@ -12208,6 +12283,14 @@ total?: number;
|
|
|
totalPage?: number;
|
|
|
}
|
|
|
|
|
|
+type PageOutput<StudentReportRecordPageVo> = {
|
|
|
+currentPage?: number;
|
|
|
+list?: StudentReportRecordPageVo[];
|
|
|
+pageSize?: number;
|
|
|
+total?: number;
|
|
|
+totalPage?: number;
|
|
|
+}
|
|
|
+
|
|
|
type PageOutput<StudentStatisticsPageVo> = {
|
|
|
currentPage?: number;
|
|
|
list?: StudentStatisticsPageVo[];
|
|
@@ -14830,6 +14913,82 @@ timeInterval?: number;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type StudentConsumeDatePageVo = {
|
|
|
+/** 班级id */
|
|
|
+classId?: string;
|
|
|
+/** 班级名称 */
|
|
|
+className?: string;
|
|
|
+/** 消费金额 */
|
|
|
+consumeMoney?: number;
|
|
|
+/** 消费时间 */
|
|
|
+consumeTime?: string;
|
|
|
+/** 消费类型 */
|
|
|
+consumeType?: string;
|
|
|
+/** 消费类型 */
|
|
|
+consumeTypeCn?: string;
|
|
|
+/** 创建时间 */
|
|
|
+createDate?: string;
|
|
|
+/** 创建人 */
|
|
|
+createUserId?: string;
|
|
|
+/** 删除标记 */
|
|
|
+deleteMark?: number;
|
|
|
+/** 有效标志 */
|
|
|
+enabledMark?: number;
|
|
|
+/** 年级id */
|
|
|
+gradeId?: string;
|
|
|
+/** 年级名称 */
|
|
|
+gradeName?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 专业id */
|
|
|
+majorId?: string;
|
|
|
+/** 专业名称 */
|
|
|
+majorName?: string;
|
|
|
+/** 修改时间 */
|
|
|
+modifyDate?: string;
|
|
|
+/** 修改人 */
|
|
|
+modifyUserId?: string;
|
|
|
+/** 序号 */
|
|
|
+sortCode?: number;
|
|
|
+/** 学生id */
|
|
|
+studentId?: string;
|
|
|
+/** 学生姓名 */
|
|
|
+studentName?: string;
|
|
|
+/** 学生学号 */
|
|
|
+studentUserName?: string;
|
|
|
+}
|
|
|
+
|
|
|
+type StudentConsumeDateVo = {
|
|
|
+/** 班级id */
|
|
|
+classId?: string;
|
|
|
+/** 班级名称 */
|
|
|
+className?: string;
|
|
|
+/** 消费金额 */
|
|
|
+consumeMoney?: number;
|
|
|
+/** 消费时间 */
|
|
|
+consumeTime?: string;
|
|
|
+/** 消费类型 */
|
|
|
+consumeType?: string;
|
|
|
+/** 年级id */
|
|
|
+gradeId?: string;
|
|
|
+/** 年级名称 */
|
|
|
+gradeName?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 专业id */
|
|
|
+majorId?: string;
|
|
|
+/** 专业名称 */
|
|
|
+majorName?: string;
|
|
|
+/** 序号 */
|
|
|
+sortCode?: number;
|
|
|
+/** 学生id */
|
|
|
+studentId?: string;
|
|
|
+/** 学生姓名 */
|
|
|
+studentName?: string;
|
|
|
+/** 学生学号 */
|
|
|
+studentUserName?: string;
|
|
|
+}
|
|
|
+
|
|
|
type StudentHonorsPageVo = {
|
|
|
/** 获奖日期 */
|
|
|
awardDate?: string;
|
|
@@ -14979,6 +15138,67 @@ teacherId?: string;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type StudentReportRecordPageVo = {
|
|
|
+/** 身份证号 */
|
|
|
+credentialNumber?: string;
|
|
|
+/** 毕业学校 */
|
|
|
+graduatedUniversity?: string;
|
|
|
+/** 是否已报到(1:是 0:否) */
|
|
|
+isReport?: number;
|
|
|
+/** 身份证号 */
|
|
|
+mobile?: string;
|
|
|
+/** 学生姓名 */
|
|
|
+name?: string;
|
|
|
+/** 家长电话 */
|
|
|
+parentMobile?: string;
|
|
|
+/** 就读方式 */
|
|
|
+stduyStatusCn?: string;
|
|
|
+/** 学生id */
|
|
|
+userId?: string;
|
|
|
+}
|
|
|
+
|
|
|
+type StudentReportRecordStatisticsVo = {
|
|
|
+/** 总人数 */
|
|
|
+allCount?: string;
|
|
|
+/** 已到人数 */
|
|
|
+arrivedCount?: string;
|
|
|
+/** 已到女生人数 */
|
|
|
+arrivedFemaleCount?: string;
|
|
|
+/** 已到男生人数 */
|
|
|
+arrivedMaleCount?: string;
|
|
|
+/** 班级名称 */
|
|
|
+className?: string;
|
|
|
+/** 女生人数 */
|
|
|
+femaleCount?: string;
|
|
|
+graduatedUniversityList?: ItemCountVo[];
|
|
|
+/** 男生人数 */
|
|
|
+maleCount?: string;
|
|
|
+/** 未到人数 */
|
|
|
+notArrivedCount?: string;
|
|
|
+/** 走读女学生总人数 */
|
|
|
+notStayFemaleCount?: string;
|
|
|
+/** 走读男学生总人数 */
|
|
|
+notStayMaleCount?: string;
|
|
|
+/** 报到率 */
|
|
|
+reportRate?: number;
|
|
|
+/** 住校女学生总人数 */
|
|
|
+stayFemaleCount?: string;
|
|
|
+/** 住校男学生总人数 */
|
|
|
+stayMaleCount?: string;
|
|
|
+/** 班主任 */
|
|
|
+teacherName?: string;
|
|
|
+}
|
|
|
+
|
|
|
+type StudentReportRecordVo = {
|
|
|
+/** 所属学期 */
|
|
|
+baseSemesterId?: string;
|
|
|
+id?: string;
|
|
|
+/** 报到时间 */
|
|
|
+reportTime?: string;
|
|
|
+/** 学生id */
|
|
|
+userId?: string;
|
|
|
+}
|
|
|
+
|
|
|
type StudentStatisticsPageVo = {
|
|
|
/** 班级名称 */
|
|
|
className?: string;
|
|
@@ -19113,6 +19333,37 @@ timeInterval?: number;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type UpdateStudentConsumeDateDto = {
|
|
|
+/** 班级id */
|
|
|
+classId?: string;
|
|
|
+/** 班级名称 */
|
|
|
+className?: string;
|
|
|
+/** 消费金额 */
|
|
|
+consumeMoney?: number;
|
|
|
+/** 消费时间 */
|
|
|
+consumeTime?: string;
|
|
|
+/** 消费类型 */
|
|
|
+consumeType?: string;
|
|
|
+/** 年级id */
|
|
|
+gradeId?: string;
|
|
|
+/** 年级名称 */
|
|
|
+gradeName?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 专业id */
|
|
|
+majorId?: string;
|
|
|
+/** 专业名称 */
|
|
|
+majorName?: string;
|
|
|
+/** 序号 */
|
|
|
+sortCode?: number;
|
|
|
+/** 学生id */
|
|
|
+studentId?: string;
|
|
|
+/** 学生姓名 */
|
|
|
+studentName?: string;
|
|
|
+/** 学生学号 */
|
|
|
+studentUserName?: string;
|
|
|
+}
|
|
|
+
|
|
|
type UpdateStudentHonorsDto = {
|
|
|
/** 申请人 */
|
|
|
applicantUserId?: string;
|
|
@@ -19161,6 +19412,12 @@ teacherId?: string;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type UpdateStudentReportRecordDto = {
|
|
|
+id?: string;
|
|
|
+/** 学生id */
|
|
|
+userId?: string;
|
|
|
+}
|
|
|
+
|
|
|
type UpdateStundentFaceProcessDto = {
|
|
|
classCn?: string;
|
|
|
/** 班级id */
|
|
@@ -21173,10 +21430,14 @@ credentialNumber?: string;
|
|
|
deleteMark?: number;
|
|
|
/** 有效标志 */
|
|
|
enabledMark?: number;
|
|
|
+/** 临时使用结束时间 */
|
|
|
+endTime?: string;
|
|
|
/** 性别 */
|
|
|
gender?: string;
|
|
|
/** 主键编号 */
|
|
|
id?: string;
|
|
|
+/** 是否临时性的(1:是 0:否) */
|
|
|
+isTemporary?: number;
|
|
|
/** 修改时间 */
|
|
|
modifyDate?: string;
|
|
|
/** 姓名 */
|