|
@@ -549,6 +549,50 @@ returnStartTime?: LocalTime_1;
|
|
|
sortCode?: number;
|
|
|
}
|
|
|
|
|
|
+type AddAttendanceStatisticsDto = {
|
|
|
+/** 应出勤天数 */
|
|
|
+attendanceDays?: number;
|
|
|
+/** 关联考勤规则(attendance_rule_category) */
|
|
|
+attendanceRuleCategoryId?: string;
|
|
|
+/** attendanceStatisticsRecord子表 */
|
|
|
+attendanceStatisticsRecordList?: AddAttendanceStatisticsRecordDto[];
|
|
|
+/** 结束日期 */
|
|
|
+endDate?: string;
|
|
|
+/** 是否需要刷新(0:否 1:是) */
|
|
|
+isNeedRefresh?: number;
|
|
|
+/** 统计月份 */
|
|
|
+month?: number;
|
|
|
+/** 统计名称 */
|
|
|
+name?: string;
|
|
|
+/** 统计人数 */
|
|
|
+personCount?: number;
|
|
|
+/** 开始日期 */
|
|
|
+startDate?: string;
|
|
|
+/** 状态(0:数据统计中 1:统计完成 2:已解锁 3:已锁定) */
|
|
|
+status?: number;
|
|
|
+/** 时间段(1:上午 2:下午) */
|
|
|
+timePeriod?: number;
|
|
|
+/** 统计年份 */
|
|
|
+year?: number;
|
|
|
+}
|
|
|
+
|
|
|
+type AddAttendanceStatisticsRecordDto = {
|
|
|
+/** 旷工次数 */
|
|
|
+absenteeCount?: number;
|
|
|
+/** 课时统计(attendance_statistics) */
|
|
|
+attendanceStatisticsId?: string;
|
|
|
+/** 每天数据 */
|
|
|
+daysData?: string;
|
|
|
+/** 所在部门(存在多个,用“,”隔开) */
|
|
|
+deptIds?: string;
|
|
|
+/** 请假次数 */
|
|
|
+leaveCount?: number;
|
|
|
+/** 正常考勤次数 */
|
|
|
+normalCount?: number;
|
|
|
+/** 教师id(xjr_user) */
|
|
|
+userId?: string;
|
|
|
+}
|
|
|
+
|
|
|
type AddAttendanceUserRelationDto = {
|
|
|
/** 所属班级id */
|
|
|
classId?: string;
|
|
@@ -1797,10 +1841,14 @@ sortCode?: number;
|
|
|
}
|
|
|
|
|
|
type AddClassTimeCalendarDto = {
|
|
|
+/** 覆盖方式 1:选中覆盖 0:全天覆盖 */
|
|
|
+coverType?: number;
|
|
|
/** 补课日期 */
|
|
|
replaceDate?: string;
|
|
|
/** 补班日期 */
|
|
|
supplementDate?: string;
|
|
|
+/** 补课课程 */
|
|
|
+timePeriod?: string;
|
|
|
}
|
|
|
|
|
|
type AddClassTimeDeleteDto = {
|
|
@@ -1812,6 +1860,8 @@ endDate?: string;
|
|
|
remark?: string;
|
|
|
/** 开始日期 */
|
|
|
startDate?: string;
|
|
|
+/** 删除课程 */
|
|
|
+timePeriod?: string;
|
|
|
/** 删除类型(xjr_dictionary_item[class_time_delete]) */
|
|
|
type?: string;
|
|
|
}
|
|
@@ -4133,6 +4183,8 @@ name?: string;
|
|
|
nickName?: string;
|
|
|
/** 密码 */
|
|
|
password?: string;
|
|
|
+/** 岗位id */
|
|
|
+postIds?: string;
|
|
|
/** 备注 */
|
|
|
remark?: string;
|
|
|
/** 排序码 */
|
|
@@ -4733,6 +4785,13 @@ status?: number;
|
|
|
userId?: string;
|
|
|
}
|
|
|
|
|
|
+type AttendanceRuleCategoryListVo = {
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 考勤规则名称 */
|
|
|
+name?: string;
|
|
|
+}
|
|
|
+
|
|
|
type AttendanceRuleCategoryPageVo = {
|
|
|
/** 考勤人员范围(1:全体 2:指定) */
|
|
|
attendanceRange?: number;
|
|
@@ -4854,7 +4913,84 @@ returnStartTime?: LocalTime;
|
|
|
sortCode?: number;
|
|
|
}
|
|
|
|
|
|
+type AttendanceStatisticsPageVo = {
|
|
|
+/** 应出勤天数 */
|
|
|
+attendanceDays?: number;
|
|
|
+/** 结束日期 */
|
|
|
+endDate?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 是否需要刷新(0:否 1:是) */
|
|
|
+isNeedRefresh?: number;
|
|
|
+/** 统计月份 */
|
|
|
+month?: number;
|
|
|
+/** 统计名称 */
|
|
|
+name?: string;
|
|
|
+/** 统计人数 */
|
|
|
+personCount?: number;
|
|
|
+/** 关联考勤规则 */
|
|
|
+ruleName?: string;
|
|
|
+/** 开始日期 */
|
|
|
+startDate?: string;
|
|
|
+/** 状态(0:数据统计中 1:统计完成 2:已解锁 3:已锁定) */
|
|
|
+status?: number;
|
|
|
+/** 时间段(1:上午 2:下午) */
|
|
|
+timePeriod?: number;
|
|
|
+/** 统计年份 */
|
|
|
+year?: number;
|
|
|
+}
|
|
|
+
|
|
|
+type AttendanceStatisticsRecordVo = {
|
|
|
+/** 旷工次数 */
|
|
|
+absenteeCount?: number;
|
|
|
+/** 课时统计(attendance_statistics) */
|
|
|
+attendanceStatisticsId?: string;
|
|
|
+/** 每天数据 */
|
|
|
+daysData?: string;
|
|
|
+/** 所在部门(存在多个,用“,”隔开) */
|
|
|
+deptIds?: string;
|
|
|
+/** 部门成 */
|
|
|
+deptName?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 请假次数 */
|
|
|
+leaveCount?: number;
|
|
|
+/** 正常考勤次数 */
|
|
|
+normalCount?: number;
|
|
|
+/** 教师id(xjr_user) */
|
|
|
+userId?: string;
|
|
|
+/** 工号 */
|
|
|
+userName?: string;
|
|
|
+}
|
|
|
+
|
|
|
type AttendanceStatisticsVo = {
|
|
|
+/** 应出勤天数 */
|
|
|
+attendanceDays?: number;
|
|
|
+/** 结束日期 */
|
|
|
+endDate?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 是否需要刷新(0:否 1:是) */
|
|
|
+isNeedRefresh?: number;
|
|
|
+/** 统计月份 */
|
|
|
+month?: number;
|
|
|
+/** 统计名称 */
|
|
|
+name?: string;
|
|
|
+/** 统计人数 */
|
|
|
+personCount?: number;
|
|
|
+/** 关联考勤规则 */
|
|
|
+ruleName?: string;
|
|
|
+/** 开始日期 */
|
|
|
+startDate?: string;
|
|
|
+/** 状态(0:数据统计中 1:统计完成 2:已解锁 3:已锁定) */
|
|
|
+status?: number;
|
|
|
+/** 时间段(1:上午 2:下午) */
|
|
|
+timePeriod?: number;
|
|
|
+/** 统计年份 */
|
|
|
+year?: number;
|
|
|
+}
|
|
|
+
|
|
|
+type AttendanceStatisticsVo_1 = {
|
|
|
/** 调课次数 */
|
|
|
adjustCount?: number;
|
|
|
/** 总课时 */
|
|
@@ -8037,6 +8173,8 @@ yjLeaveSchoolCount?: number;
|
|
|
}
|
|
|
|
|
|
type ClassTimeCalendarPageVo = {
|
|
|
+/** 覆盖方式 1:选中覆盖 0:全天覆盖 */
|
|
|
+coverType?: number;
|
|
|
/** 创建时间 */
|
|
|
createDate?: string;
|
|
|
/** 创建人 */
|
|
@@ -8057,6 +8195,8 @@ replaceDate?: string;
|
|
|
status?: number;
|
|
|
/** 补班日期 */
|
|
|
supplementDate?: string;
|
|
|
+/** 补课课程 */
|
|
|
+timePeriod?: string;
|
|
|
}
|
|
|
|
|
|
type ClassTimeCalendarVo = {
|
|
@@ -8087,6 +8227,8 @@ remark?: string;
|
|
|
startDate?: string;
|
|
|
/** 状态(0:生效 1:锁定 2:作废) */
|
|
|
status?: number;
|
|
|
+/** 删除课程 */
|
|
|
+timePeriod?: string;
|
|
|
/** 删除类型(xjr_dictionary_item[class_time_delete]) */
|
|
|
type?: string;
|
|
|
/** 删除类型-中文 */
|
|
@@ -11960,6 +12102,14 @@ total?: number;
|
|
|
totalPage?: number;
|
|
|
}
|
|
|
|
|
|
+type PageOutput<AttendanceStatisticsPageVo> = {
|
|
|
+currentPage?: number;
|
|
|
+list?: AttendanceStatisticsPageVo[];
|
|
|
+pageSize?: number;
|
|
|
+total?: number;
|
|
|
+totalPage?: number;
|
|
|
+}
|
|
|
+
|
|
|
type PageOutput<BandingRulePageVo> = {
|
|
|
currentPage?: number;
|
|
|
list?: BandingRulePageVo[];
|
|
@@ -16184,6 +16334,8 @@ titleColor?: string;
|
|
|
|
|
|
type TableConfig = {
|
|
|
isMain?: boolean;
|
|
|
+isNullable?: boolean;
|
|
|
+nullable?: boolean;
|
|
|
pkField?: string;
|
|
|
pkType?: string;
|
|
|
relationField?: string;
|
|
@@ -17508,6 +17660,35 @@ status?: number;
|
|
|
stduyStatus?: string;
|
|
|
}
|
|
|
|
|
|
+type UpdateAttendanceStatisticsDto = {
|
|
|
+/** 应出勤天数 */
|
|
|
+attendanceDays?: number;
|
|
|
+/** 关联考勤规则(attendance_rule_category) */
|
|
|
+attendanceRuleCategoryId?: string;
|
|
|
+/** attendanceStatisticsRecord子表 */
|
|
|
+attendanceStatisticsRecordList?: AddAttendanceStatisticsRecordDto[];
|
|
|
+/** 结束日期 */
|
|
|
+endDate?: string;
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+/** 是否需要刷新(0:否 1:是) */
|
|
|
+isNeedRefresh?: number;
|
|
|
+/** 统计月份 */
|
|
|
+month?: number;
|
|
|
+/** 统计名称 */
|
|
|
+name?: string;
|
|
|
+/** 统计人数 */
|
|
|
+personCount?: number;
|
|
|
+/** 开始日期 */
|
|
|
+startDate?: string;
|
|
|
+/** 状态(0:数据统计中 1:统计完成 2:已解锁 3:已锁定) */
|
|
|
+status?: number;
|
|
|
+/** 时间段(1:上午 2:下午) */
|
|
|
+timePeriod?: number;
|
|
|
+/** 统计年份 */
|
|
|
+year?: number;
|
|
|
+}
|
|
|
+
|
|
|
type UpdateBandingClassDto = {
|
|
|
/** 分班任务id */
|
|
|
bandingTaskId?: string;
|
|
@@ -18768,12 +18949,16 @@ sortCode?: number;
|
|
|
}
|
|
|
|
|
|
type UpdateClassTimeCalendarDto = {
|
|
|
+/** 覆盖方式 1:选中覆盖 0:全天覆盖 */
|
|
|
+coverType?: number;
|
|
|
/** 主键编号 */
|
|
|
id?: string;
|
|
|
/** 补课日期 */
|
|
|
replaceDate?: string;
|
|
|
/** 补班日期 */
|
|
|
supplementDate?: string;
|
|
|
+/** 补课课程 */
|
|
|
+timePeriod?: string;
|
|
|
}
|
|
|
|
|
|
type UpdateClassTimeDeleteDto = {
|
|
@@ -18787,6 +18972,8 @@ id?: string;
|
|
|
remark?: string;
|
|
|
/** 开始日期 */
|
|
|
startDate?: string;
|
|
|
+/** 删除课程 */
|
|
|
+timePeriod?: string;
|
|
|
/** 删除类型(xjr_dictionary_item[class_time_delete]) */
|
|
|
type?: string;
|
|
|
}
|
|
@@ -21056,6 +21243,8 @@ name?: string;
|
|
|
nickName?: string;
|
|
|
/** 密码 */
|
|
|
password?: string;
|
|
|
+/** 岗位id */
|
|
|
+postIds?: string;
|
|
|
/** 备注 */
|
|
|
remark?: string;
|
|
|
/** 排序码 */
|
|
@@ -21507,6 +21696,11 @@ status?: number;
|
|
|
studentId?: string;
|
|
|
}
|
|
|
|
|
|
+type WfCourseAdjustDto = {
|
|
|
+/** 主键编号 */
|
|
|
+id?: string;
|
|
|
+}
|
|
|
+
|
|
|
type WfHeadTeacherLeavePageVo = {
|
|
|
/** 申请人 */
|
|
|
applicantUserId?: string;
|